top of page
Sample Code and Results
Examples of forGL statements:
(modified from run.hx near line 2300)
b = 1024. b * .25 . show
(The top value of the Data Stack will show.)
256
Hello world example (Concatenation or Forth style):
"Hello, World!" show
Hello, World!
Hello World example (more typical code style):
Not working as of July 30, Support for Verbs needs to be added.
show("Hello, World!")
bottom of page