Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 141 Bytes

README.md

File metadata and controls

14 lines (9 loc) · 141 Bytes

A stupid language

git clone ...

go run main.go

>> let a = [1, 2, 3]
>> a[1]


>> let idx = fn(x) { [1,2,3,4,5][x] };
>> idx(2)