Markdown sample

08.02.20191 Min Read — In TIL

OpenAI is a nonprofit research company on a mission to build safe artificial general intelligence (AGI) and ensure AGI's benefits are as widely and evenly distributed as possible.

some cool stuff


let db = [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20]
let offset = 9                                          
let limit = 8                                           
let queryResult = Array(db[offset..<(offset + limit)])          
print(queryResult)