Data update

This commit is contained in:
Ingy döt Net 2026-04-30 12:34:36 -04:00
parent 4bb20c9b71
commit cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions

View file

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

View file

@ -0,0 +1 @@
ConsoleWriteError("Goodbye, World!" & @CRLF)

View file

@ -0,0 +1,4 @@
program-id. ehello.
procedure division.
display "Goodbye, world!" upon syserr.
stop run.

View file

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

View file

@ -0,0 +1 @@
(princ "Goodbye, World!\n" 'external-debugging-output)

View file

@ -0,0 +1 @@
puts(2,"Goodbye, world!\n") -- 2 means output to 'standard error'

View file

@ -0,0 +1 @@
Write-Error "Goodbye, World!"

View file

@ -0,0 +1 @@
[Console]::Error.WriteLine("Goodbye, World!")

View file

@ -0,0 +1 @@
WScript.StdErr.WriteLine "Goodbye, World!"