RosettaCodeData/Task/Hello-world-Standard-error/Lingo/hello-world-standard-error-2.lingo

8 lines
196 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
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!")