Data update

This commit is contained in:
Ingy döt Net 2026-02-01 16:33:20 -08:00
parent 5150844a7d
commit 4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions

View file

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

View file

@ -1,8 +0,0 @@
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

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

View file

@ -1,3 +1,3 @@
setlocal enableDelayedExpansion
<nul set/p"=Goodbye, World^!"
<nul set/p=Goodbye, World^^^!
<nul set/p=Goodbye, World^^!

View file

@ -1,6 +0,0 @@
IDENTIFICATION DIVISION.
PROGRAM-ID. GOODBYE-WORLD.
PROCEDURE DIVISION.
DISPLAY 'Goodbye, World!' WITH NO ADVANCING.
STOP RUN.
END PROGRAM GOODBYE-WORLD.

View file

@ -1,4 +1,4 @@
public program()
public Program()
{
//print will not append a newline
console.write("Goodbye, World!")

View file

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

View file

@ -1,2 +0,0 @@
-- In Euphoria puts() does not insert a newline character after outputting a string
puts(1,"Goodbye, world!")

View file

@ -1,2 +0,0 @@
Write-Host -NoNewLine "Goodbye, "
Write-Host -NoNewLine "World!"

View file

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