Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
|
|
@ -0,0 +1,5 @@
|
|||
-- print to standard error
|
||||
stdErr("Goodbye, World!", TRUE)
|
||||
|
||||
-- print to the Windows debug console (shown in realtime e.g. in Systernal's DebugView)
|
||||
dbgPrint("Goodbye, World!")
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
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!")
|
||||
Loading…
Add table
Add a link
Reference in a new issue