Files
monkey/testdata/builtins.monkey
Chuck Smith ca4eed10b8
Some checks failed
Build / build (push) Failing after 1m26s
Test / build (push) Failing after 11m43s
More tests
2024-03-18 19:46:54 -04:00

13 lines
113 B
Plaintext

let xs = [1, 2, 3]
len(xs)
first(xs)
rest(xs)
last(xs)
push(xs, 5)
pop(xs)
len("foo")
let x = input()
print(x)