RosettaCodeData/Task/Hello-world-Standard-error/Lingo/hello-world-standard-error-2.lingo
2016-12-05 23:44:36 +01: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!")