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 @@
procedure Main is
begin
-- Insert code here.
null;
end Main;

View file

@ -1,5 +0,0 @@
with Ada.Text_IO; use Ada.Text_IO;
procedure Main is
begin
Put_Line("Hello World!");
end Main;

View file

@ -1 +1 @@
print "Hello World!!"
print "Hello World!!

View file

@ -1 +0,0 @@
$ sudo apt-get install open-cobol

View file

@ -1,7 +0,0 @@
program-id. hello-world.
procedure division.
display "Hello, World!"
goback
.

View file

@ -1 +0,0 @@
$ cobc -x -Wall -free ./hello.cob

View file

@ -1,2 +0,0 @@
$ ./hello
Hello, World!

View file

@ -1 +0,0 @@
sudo snap install coq-prover

View file

@ -1,3 +0,0 @@
Require Import Coq.Strings.String.
Eval compute in ("Hello world!"%string).

View file

@ -1,4 +1,4 @@
public program()
public Program()
{
console.writeLine("Hello world")
}

View file

@ -1,3 +1 @@
-->
<span style="color: #7060A8;">puts</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"Hello world!"</span><span style="color: #0000FF;">)</span>
<!--
puts(1,"Hello world!")

View file

@ -1,3 +1,16 @@
-->
<span style="color: #7060A8;">puts</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"Hello world!"</span><span style="color: #0000FF;">)</span>
<!--
--
-- pwa\phix\hello_world.exw
-- ========================
--
with javascript_semantics
include pGUI.e
IupOpen()
Ihandle lbl = IupFlatLabel("World!","EXPAND=YES, ALIGNMENT=ACENTER")
Ihandln dlg = IupDialog(lbl,"TITLE=Hello, RASTERSIZE=215x85")
IupShow(dlg)
if platform()!=JS then
IupMainLoop()
dlg = IupDestroy(dlg)
IupClose()
end if

View file

@ -1,3 +0,0 @@
-->
<span style="color: #7060A8;">puts</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"Hello world!"</span><span style="color: #0000FF;">)</span>
<!--

View file

@ -1,18 +0,0 @@
(phixonline)-->
<span style="color: #000080;font-style:italic;">--
-- pwa\phix\hello_world.exw
-- ========================
--</span>
<span style="color: #008080;">with</span> <span style="color: #008080;">javascript_semantics</span>
<span style="color: #008080;">include</span> <span style="color: #000000;">pGUI</span><span style="color: #0000FF;">.</span><span style="color: #000000;">e</span>
<span style="color: #7060A8;">IupOpen</span><span style="color: #0000FF;">()</span>
<span style="color: #004080;">Ihandle</span> <span style="color: #000000;">lbl</span> <span style="color: #0000FF;">=</span> <span style="color: #7060A8;">IupFlatLabel</span><span style="color: #0000FF;">(</span><span style="color: #008000;">"World!"</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"EXPAND=YES, ALIGNMENT=ACENTER"</span><span style="color: #0000FF;">)</span>
<span style="color: #004080;">Ihandln</span> <span style="color: #000000;">dlg</span> <span style="color: #0000FF;">=</span> <span style="color: #7060A8;">IupDialog</span><span style="color: #0000FF;">(</span><span style="color: #000000;">lbl</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"TITLE=Hello, RASTERSIZE=215x85"</span><span style="color: #0000FF;">)</span>
<span style="color: #7060A8;">IupShow</span><span style="color: #0000FF;">(</span><span style="color: #000000;">dlg</span><span style="color: #0000FF;">)</span>
<span style="color: #008080;">if</span> <span style="color: #7060A8;">platform</span><span style="color: #0000FF;">()!=</span><span style="color: #004600;">JS</span> <span style="color: #008080;">then</span>
<span style="color: #7060A8;">IupMainLoop</span><span style="color: #0000FF;">()</span>
<span style="color: #000000;">dlg</span> <span style="color: #0000FF;">=</span> <span style="color: #7060A8;">IupDestroy</span><span style="color: #0000FF;">(</span><span style="color: #000000;">dlg</span><span style="color: #0000FF;">)</span>
<span style="color: #7060A8;">IupClose</span><span style="color: #0000FF;">()</span>
<span style="color: #008080;">end</span> <span style="color: #008080;">if</span>
<!--

View file

@ -1 +0,0 @@
"Hello, World!" #This is a comment.

View file

@ -1 +0,0 @@
wRiTe-HOsT "Hello, World!" #PowerShell is case-insensitive.

View file

@ -1 +0,0 @@
Write-Host Hello`, World! #The backtick escapes the next character.