RosettaCodeData/Task/Scope-Function-names-and-labels/Factor/scope-function-names-and-labels-2.factor
2023-07-01 13:44:08 -04:00

6 lines
134 B
Factor

USE: io
IN: hello-vocab
hello ! error; hello hasn't been defined yet
: hello ( -- ) "Hello, world!" print ;
hello ! visible here