RosettaCodeData/Task/Hello-world-Standard-error/Lingo/hello-world-standard-error-2.lingo
2023-07-01 13:44:08 -04:00

7 lines
196 B
Text

sx = xtra("Shell").new()
-- print to standard error
sx.shell_cmd("echo Goodbye, World!>&2")
-- print to system.log (shown in realtime e.g. in Konsole.app)
sx.shell_cmd("logger Goodbye, World!")