How do I pass REBOL arguments from the command line?
To pass arguments into a script when launching REBOL from the command line, do the following: commandline> rebol %some-script.r 54321 Launch! Assuming %some-script.r is written as follows: REBOL [ Title: “Command-Line Argument Example” ] print mold system/options/args print mold system/script/args The following will be output [“54321” “Launch!”] “54321 Launch!” As the Macintosh OS doesn’t have a native command line, command-line arguments do not apply to the Mac.