June 2018 Update

This commit is contained in:
Ingy döt Net 2018-06-22 20:57:24 +00:00
parent ba8067c3b7
commit 22f33d4004
5278 changed files with 84726 additions and 14379 deletions

View file

@ -1,6 +1,6 @@
with Ada.Text_IO;
procedure Goodbye_World is
procedure Goodbye_World is
begin
Ada.Text_IO.Put("Goodbye, World!");
end Goodbye_World;

View file

@ -0,0 +1,8 @@
with Ada.Text_IO;
with Ada.Text_IO.Text_Streams;
procedure Goodbye_World is
stdout: Ada.Text_IO.File_Type := Ada.Text_IO.Standard_Output;
begin
String'Write(Ada.Text_IO.Text_Streams.Stream(stdout), "Goodbye World");
end Goodbye_World;

View file

@ -0,0 +1 @@
"!dlroW ,eybdooG">:#,_@

View file

@ -0,0 +1,7 @@
import extensions.
program =
[
//print will not append a newline
console print("Goodbye, World!").
].

View file

@ -0,0 +1,6 @@
Public Sub Main()
Print "Goodbye, "; 'The semicolon stops the newline being added
Print "World!"
End

View file

@ -0,0 +1 @@
"Goodbye, World!";

View file

@ -0,0 +1 @@
write("Goodbye, World!")

View file

@ -0,0 +1,3 @@
procedure main()
writes("Goodbye, World!")
end

View file

@ -0,0 +1,7 @@
MODULE HelloWorld;
FROM Terminal IMPORT WriteString,ReadChar;
BEGIN
WriteString("Goodbye, World!");
ReadChar
END HelloWorld.

View file

@ -0,0 +1 @@
Goodbye, World!