RosettaCodeData/Task/Interactive-programming-repl-/Oforth/interactive-programming-repl--2.fth

9 lines
106 B
Forth
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
: x(a, b, sep) a sep + sep + b + ;
ok
>x("Rosetta", "Code", ":")
ok
>.s
[1] (String) Rosetta::Code
ok
>