Another update from ingydotnet^djgoku
This commit is contained in:
parent
91df62d461
commit
948b86eafa
7604 changed files with 108452 additions and 22726 deletions
|
|
@ -11,3 +11,5 @@ to run the languages' example in the [[Hello world/Text]] task.
|
|||
;Note<nowiki>:</nowiki>
|
||||
* If it is more natural for a language to give output via a GUI or to a file etc, then use that method of output rather than as text to a terminal/command-line, but remember to give instructions on how to view the output generated.
|
||||
* You may use sub-headings if giving instructions for multiple platforms.
|
||||
|
||||
{{omit from|ABAP|There's no newbie frienly way to install ABAP. It's part of the enterprise NetWeaver Application Server.}}
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
Print "HelloWorld!"
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
clg # Clear the graphics screen
|
||||
font "Arial",10,100 # Set the font style, size, and weight respectively
|
||||
color black # Set the color...
|
||||
text 0,0,"HelloWorld!" # Display in (x,y) the text HelloWorld!
|
||||
|
|
@ -0,0 +1 @@
|
|||
(format t "Hello world!~%")
|
||||
|
|
@ -0,0 +1 @@
|
|||
(load "hello.lisp")
|
||||
|
|
@ -0,0 +1 @@
|
|||
"Hello, World!" #This is a comment.
|
||||
|
|
@ -0,0 +1 @@
|
|||
wRiTe-HOsT "Hello, World!" #PowerShell is case-insensitive.
|
||||
|
|
@ -0,0 +1 @@
|
|||
Write-Host Hello`, World! #The backtick escapes the next character.
|
||||
2
Task/Hello-world-Newbie/Racket/hello-world-newbie.rkt
Normal file
2
Task/Hello-world-Newbie/Racket/hello-world-newbie.rkt
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
#lang racket
|
||||
(displayln "Hello world!")
|
||||
1
Task/Hello-world-Newbie/SETL/hello-world-newbie-1.setl
Normal file
1
Task/Hello-world-Newbie/SETL/hello-world-newbie-1.setl
Normal file
|
|
@ -0,0 +1 @@
|
|||
setl 'print("Hello, world!");'
|
||||
1
Task/Hello-world-Newbie/SETL/hello-world-newbie-2.setl
Normal file
1
Task/Hello-world-Newbie/SETL/hello-world-newbie-2.setl
Normal file
|
|
@ -0,0 +1 @@
|
|||
print("Hello, world!");
|
||||
1
Task/Hello-world-Newbie/SETL/hello-world-newbie-3.setl
Normal file
1
Task/Hello-world-Newbie/SETL/hello-world-newbie-3.setl
Normal file
|
|
@ -0,0 +1 @@
|
|||
setl myscript.setl
|
||||
Loading…
Add table
Add a link
Reference in a new issue