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

@ -14,3 +14,4 @@ _start:
msg:
.ascii "Hello world!\n"
msgend:
.align 4

View file

@ -19,3 +19,4 @@ writez: // extern long writez(char *str);
ret // return from function.
// return value (x0) is number of characters written.
msg: .asciz "Hello world!\n" // .asciz means null-terminated string. Assembler adds the 0
.align 4

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 +0,0 @@
ConsoleWrite("Hello world!" & @CRLF)

View file

@ -1 +0,0 @@
(print "Hello World!")

View file

@ -1,2 +1,2 @@
setlocal enableDelayedExpansion
echo Hello world!^^!
echo Hello world^^!

View file

@ -1,4 +0,0 @@
program-id. hello.
procedure division.
display "Hello world!".
stop run.

View file

@ -1 +0,0 @@
display"Hello, world".

View file

@ -1 +0,0 @@
writeln("Hello world!");

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 +0,0 @@
(message "Hello world!")

View file

@ -1 +0,0 @@
(princ "Hello world!\n")

View file

@ -1 +0,0 @@
trace("Hello world!");

View file

@ -1 +0,0 @@
'Hello world!'

View file

@ -1 +0,0 @@
print "Hello world!"

View file

@ -1 +0,0 @@
Js.log("Hello world!")

View file

@ -1 +0,0 @@
WScript.Echo "Hello world!"

View file

@ -1,16 +0,0 @@
LIBRARY std;
USE std.TEXTIO.all;
entity test is
end entity test;
architecture beh of test is
begin
process
variable line_out : line;
begin
write(line_out, string'("Hello world!"));
writeline(OUTPUT, line_out);
wait; -- needed to stop the execution
end process;
end architecture beh;

View file

@ -2,10 +2,10 @@
; chmod 755 hello
;run with: ./hello
format ELF64 executable 3 ;Linux 64 bit executable
entry _start ;label to start execution
format ELF64 executable 3 ; Linux 64 bit executable
entry _start ; label to start execution
segment executable readable ;code segment
segment executable readable ; code segment
_start:
.write:
mov rax, 1 ; sys_write