More tests
This commit is contained in:
13
testdata/builtins.monkey
vendored
Normal file
13
testdata/builtins.monkey
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
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)
|
||||
Reference in New Issue
Block a user