1,375
edits
m (Use Nasal highlighter) |
No edit summary |
||
| Line 7: | Line 7: | ||
var say_hello = func() { | var say_hello = func() { | ||
print("Hello!"); | |||
} | }; | ||
# to call the function: | # to call the function: | ||
say_hello(); | |||
</syntaxhighlight> | </syntaxhighlight> | ||
| Line 20: | Line 20: | ||
(func() { | (func() { | ||
print("Hello!"); | |||
}) (); | }) (); | ||
edits