June 2018 Update
This commit is contained in:
parent
ba8067c3b7
commit
22f33d4004
5278 changed files with 84726 additions and 14379 deletions
|
|
@ -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;
|
||||
|
|
@ -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;
|
||||
|
|
@ -0,0 +1 @@
|
|||
"!dlroW ,eybdooG">:#,_@
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
import extensions.
|
||||
|
||||
program =
|
||||
[
|
||||
//print will not append a newline
|
||||
console print("Goodbye, World!").
|
||||
].
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
Public Sub Main()
|
||||
|
||||
Print "Goodbye, "; 'The semicolon stops the newline being added
|
||||
Print "World!"
|
||||
|
||||
End
|
||||
|
|
@ -0,0 +1 @@
|
|||
"Goodbye, World!";
|
||||
|
|
@ -0,0 +1 @@
|
|||
write("Goodbye, World!")
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
procedure main()
|
||||
writes("Goodbye, World!")
|
||||
end
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
MODULE HelloWorld;
|
||||
FROM Terminal IMPORT WriteString,ReadChar;
|
||||
|
||||
BEGIN
|
||||
WriteString("Goodbye, World!");
|
||||
ReadChar
|
||||
END HelloWorld.
|
||||
|
|
@ -0,0 +1 @@
|
|||
Goodbye, World!
|
||||
Loading…
Add table
Add a link
Reference in a new issue