USING: command-line io namespaces sequences ; IN: hello-args ! 'command-line get' works in scripting environment, ! but not with a deployed executable. How does one ! access the args to one's own executable? : hello-args ( -- ) "Hello " write command-line get " " join print ; MAIN: hello-args