RosettaCodeData/Task/Scope-Function-names-and-labels/Factor/scope-function-names-and-labels-2.factor

7 lines
134 B
Factor
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
USE: io
IN: hello-vocab
hello ! error; hello hasn't been defined yet
: hello ( -- ) "Hello, world!" print ;
hello ! visible here