Browse Source

remvoe atom prints for test stability

master
Martin Dørum 3 years ago
parent
commit
5b73e55a98
2 changed files with 4 additions and 4 deletions
  1. 2
    2
      test/examples/builtins.l2
  2. 2
    2
      test/examples/builtins.l2.expected

+ 2
- 2
test/examples/builtins.l2 View File



print "\nprint" print "\nprint"
print none print none
print 'true 'false 'hello
print 'true 'false
print 100 print 100
print 100.5 print 100.5
print 0xff print 0xff
print "Hello World" print "Hello World"
print [none 'true 'false 'hello 100.1 "Nope" {} {0}]
print [none 'true 'false 100.1 "Nope" {} {0}]
print {} {a: 10} print {} {a: 10}


print "\nlen" print "\nlen"

+ 2
- 2
test/examples/builtins.l2.expected View File



print print
(none) (none)
(true) (false) (atom 26)
(true) (false)
100 100
100.5 100.5
255 255
Hello World Hello World
[(none) (true) (false) (atom 26) 100.1 Nope (namespace) (function)]
[(none) (true) (false) 100.1 Nope (namespace) (function)]
(namespace) (namespace) (namespace) (namespace)


len len

Loading…
Cancel
Save