Data update
This commit is contained in:
parent
4bb20c9b71
commit
cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions
6
Task/Hello-world-Newbie/Ada/hello-world-newbie-1.adb
Normal file
6
Task/Hello-world-Newbie/Ada/hello-world-newbie-1.adb
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
procedure Main is
|
||||
|
||||
begin
|
||||
-- Insert code here.
|
||||
null;
|
||||
end Main;
|
||||
5
Task/Hello-world-Newbie/Ada/hello-world-newbie-2.adb
Normal file
5
Task/Hello-world-Newbie/Ada/hello-world-newbie-2.adb
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
with Ada.Text_IO; use Ada.Text_IO;
|
||||
procedure Main is
|
||||
begin
|
||||
Put_Line("Hello World!");
|
||||
end Main;
|
||||
|
|
@ -0,0 +1 @@
|
|||
display alert "Hello World!"
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
import ballerina/io;
|
||||
|
||||
public function main() {
|
||||
io:println("Hello world!");
|
||||
}
|
||||
1
Task/Hello-world-Newbie/COBOL/hello-world-newbie-1.cob
Normal file
1
Task/Hello-world-Newbie/COBOL/hello-world-newbie-1.cob
Normal file
|
|
@ -0,0 +1 @@
|
|||
$ sudo apt-get install open-cobol
|
||||
7
Task/Hello-world-Newbie/COBOL/hello-world-newbie-2.cob
Normal file
7
Task/Hello-world-Newbie/COBOL/hello-world-newbie-2.cob
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
program-id. hello-world.
|
||||
|
||||
procedure division.
|
||||
display "Hello, World!"
|
||||
|
||||
goback
|
||||
.
|
||||
1
Task/Hello-world-Newbie/COBOL/hello-world-newbie-3.cob
Normal file
1
Task/Hello-world-Newbie/COBOL/hello-world-newbie-3.cob
Normal file
|
|
@ -0,0 +1 @@
|
|||
$ cobc -x -Wall -free ./hello.cob
|
||||
2
Task/Hello-world-Newbie/COBOL/hello-world-newbie-4.cob
Normal file
2
Task/Hello-world-Newbie/COBOL/hello-world-newbie-4.cob
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
$ ./hello
|
||||
Hello, World!
|
||||
1
Task/Hello-world-Newbie/Pluto/hello-world-newbie.pluto
Normal file
1
Task/Hello-world-Newbie/Pluto/hello-world-newbie.pluto
Normal file
|
|
@ -0,0 +1 @@
|
|||
print("Hello world!")
|
||||
|
|
@ -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.
|
||||
1
Task/Hello-world-Newbie/R/hello-world-newbie.r
Normal file
1
Task/Hello-world-Newbie/R/hello-world-newbie.r
Normal file
|
|
@ -0,0 +1 @@
|
|||
cat("Hello World!\n")
|
||||
1
Task/Hello-world-Newbie/Rocq/hello-world-newbie-1.rocq
Normal file
1
Task/Hello-world-Newbie/Rocq/hello-world-newbie-1.rocq
Normal file
|
|
@ -0,0 +1 @@
|
|||
sudo snap install coq-prover
|
||||
3
Task/Hello-world-Newbie/Rocq/hello-world-newbie-2.rocq
Normal file
3
Task/Hello-world-Newbie/Rocq/hello-world-newbie-2.rocq
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Require Import Coq.Strings.String.
|
||||
|
||||
Eval compute in ("Hello world!"%string).
|
||||
1
Task/Hello-world-Newbie/Rye/hello-world-newbie.rye
Normal file
1
Task/Hello-world-Newbie/Rye/hello-world-newbie.rye
Normal file
|
|
@ -0,0 +1 @@
|
|||
print "Hello World!!"
|
||||
Loading…
Add table
Add a link
Reference in a new issue