langs a-z

This commit is contained in:
Ingy döt Net 2013-04-10 22:43:41 -07:00
parent db842d013d
commit d066446780
11389 changed files with 98361 additions and 1020 deletions

View file

@ -0,0 +1,5 @@
/* NetRexx */
options replace format comments java crossref savelog symbols binary
System.err.println("Goodbye, World!")

View file

@ -0,0 +1,2 @@
prerr_endline "Goodbye, World!"; (* this is how you print a string with newline to stderr *)
Printf.eprintf "Goodbye, World!\n"; (* this is how you would use printf with stderr *)

View file

@ -0,0 +1,2 @@
output_string stderr "Goodbye, World!\n";
Printf.fprintf stderr "Goodbye, World!\n";

View file

@ -0,0 +1,2 @@
let msg = "Goodbye, World!\n" in
ignore(Unix.write Unix.stderr msg 0 (String.length msg)) ;;

View file

@ -0,0 +1,5 @@
MODULE HelloErr;
IMPORT Err;
BEGIN
Err.String("Goodbye, World!");Err.Ln
END HelloErr.

View file

@ -0,0 +1,9 @@
#import <Foundation/Foundation.h>
int main()
{
fprintf(stderr, "Goodbye, World!\n");
fputs("Goodbye, World!\n", stderr);
NSLog(@"Goodbye, World!");
return 0;
}

View file

@ -0,0 +1 @@
fprintf(stderr, "Goodbye, World!\n");

View file

@ -0,0 +1,6 @@
functor
import Application System
define
{System.showError "Goodbye, World!"}
{Application.exit 0}
end

View file

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

View file

@ -0,0 +1 @@
display ('Goodbye, World');

View file

@ -0,0 +1,5 @@
program byeworld;
begin
writeln(StdErr, 'Goodbye, World!');
end.

View file

@ -0,0 +1 @@
note "Goodbye, World!";

View file

@ -0,0 +1,4 @@
(%stderr) (w) file dup
(Goodbye, World!
) writestring
closefile

View file

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

View file

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

View file

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

View file

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

View file

@ -0,0 +1,2 @@
with files'
"Goodbye, World!" tempString dup getLength "/dev/stderr" spew

View file

@ -0,0 +1,4 @@
html "<script>
window.open('','error_msg','');
document.write('Goodbye, World!');
</script>""

View file

@ -0,0 +1,3 @@
terminal = "Error"
output = "Normal text"
end

View file

@ -0,0 +1 @@
standard_error.print("Goodbye, World!\n");

View file

@ -0,0 +1,2 @@
include "short.salm";
stderr.print("Goodbye, World!\n");

View file

@ -0,0 +1,2 @@
include "shorter.salm";
err.print("Goodbye, World!\n");

View file

@ -0,0 +1,2 @@
include "shorter.salm";
se.print("Goodbye, World!\n");

View file

@ -0,0 +1,6 @@
$ include "seed7_05.s7i";
const proc: main is func
begin
writeln(STD_ERR, "Goodbye, World!");
end func;

View file

@ -0,0 +1 @@
inform: 'Goodbye, World!' &target: DebugConsole.

View file

@ -0,0 +1 @@
TextIO.output (TextIO.stdErr, "Goodbye, World!\n")

View file

@ -0,0 +1,4 @@
$$ MODE TUSCRIPT
PRINT/ERROR "hello world"
text="goodbye world"
PRINT/ERROR text

View file

@ -0,0 +1 @@
echo "Goodbye, World!" >&2

View file

@ -0,0 +1 @@
echo "Goodbye, World!" >/dev/stderr

View file

@ -0,0 +1,15 @@
section .data
msg db 'Goodbye, World!', 0AH
len equ $-msg
section .text
global _start
_start: mov edx, len
mov ecx, msg
mov ebx, 2
mov eax, 4
int 80h
mov ebx, 1
mov eax, 1
int 80h

View file

@ -0,0 +1,2 @@
code Text=12;
Text(2, "Goodbye, World!")