Data update
This commit is contained in:
parent
5150844a7d
commit
4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions
|
|
@ -14,3 +14,4 @@ _start:
|
|||
msg:
|
||||
.ascii "Hello world!\n"
|
||||
msgend:
|
||||
.align 4
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,5 +0,0 @@
|
|||
with Ada.Text_IO; use Ada.Text_IO;
|
||||
procedure Main is
|
||||
begin
|
||||
Put_Line ("Hello world!");
|
||||
end Main;
|
||||
|
|
@ -1 +0,0 @@
|
|||
ConsoleWrite("Hello world!" & @CRLF)
|
||||
|
|
@ -1 +0,0 @@
|
|||
(print "Hello World!")
|
||||
|
|
@ -1,2 +1,2 @@
|
|||
setlocal enableDelayedExpansion
|
||||
echo Hello world!^^!
|
||||
echo Hello world^^!
|
||||
|
|
|
|||
|
|
@ -1,4 +0,0 @@
|
|||
program-id. hello.
|
||||
procedure division.
|
||||
display "Hello world!".
|
||||
stop run.
|
||||
|
|
@ -1 +0,0 @@
|
|||
display"Hello, world".
|
||||
|
|
@ -1 +0,0 @@
|
|||
writeln("Hello world!");
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
Require Import Coq.Strings.String.
|
||||
|
||||
Eval compute in ("Hello world!"%string).
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
public program()
|
||||
public Program()
|
||||
{
|
||||
console.writeLine("Hello world!")
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
(message "Hello world!")
|
||||
|
|
@ -1 +0,0 @@
|
|||
(princ "Hello world!\n")
|
||||
|
|
@ -1 +0,0 @@
|
|||
trace("Hello world!");
|
||||
|
|
@ -1 +0,0 @@
|
|||
'Hello world!'
|
||||
|
|
@ -1 +0,0 @@
|
|||
print "Hello world!"
|
||||
|
|
@ -1 +0,0 @@
|
|||
Js.log("Hello world!")
|
||||
|
|
@ -1 +0,0 @@
|
|||
WScript.Echo "Hello world!"
|
||||
|
|
@ -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;
|
||||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue