forked from ground/ground
Error types, print lists, better fn calling
This commit is contained in:
@@ -1 +1 @@
|
||||
error "Hello, world!"
|
||||
error "Hello, world!" "sillyError"
|
||||
|
@@ -14,7 +14,7 @@ fun -bool !jumpy
|
||||
return true
|
||||
endfun
|
||||
|
||||
call !jumpy &tmp
|
||||
!jumpy &tmp
|
||||
|
||||
stdlnout "I called a function"
|
||||
|
||||
|
@@ -1,5 +1,6 @@
|
||||
# A cool list
|
||||
setlist *favWords "hello" "there" "general" "kenobi"
|
||||
stdlnout *favWords
|
||||
|
||||
set &count 0
|
||||
set &passedThrough true
|
||||
|
@@ -1,5 +1,6 @@
|
||||
set &var 0
|
||||
@jump
|
||||
add 1 $var &var
|
||||
stdlnout $var
|
||||
greater 1000 $var &cond
|
||||
if $cond %2
|
||||
greater 10000 $var &cond
|
||||
if $cond %jump
|
||||
|
Reference in New Issue
Block a user