langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
|
|
@ -0,0 +1,5 @@
|
|||
/* NetRexx */
|
||||
|
||||
options replace format comments java crossref savelog symbols binary
|
||||
|
||||
System.err.println("Goodbye, World!")
|
||||
|
|
@ -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 *)
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
output_string stderr "Goodbye, World!\n";
|
||||
Printf.fprintf stderr "Goodbye, World!\n";
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
let msg = "Goodbye, World!\n" in
|
||||
ignore(Unix.write Unix.stderr msg 0 (String.length msg)) ;;
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
MODULE HelloErr;
|
||||
IMPORT Err;
|
||||
BEGIN
|
||||
Err.String("Goodbye, World!");Err.Ln
|
||||
END HelloErr.
|
||||
|
|
@ -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;
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
fprintf(stderr, "Goodbye, World!\n");
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
functor
|
||||
import Application System
|
||||
define
|
||||
{System.showError "Goodbye, World!"}
|
||||
{Application.exit 0}
|
||||
end
|
||||
|
|
@ -0,0 +1 @@
|
|||
error("Goodbye, World!")
|
||||
|
|
@ -0,0 +1 @@
|
|||
display ('Goodbye, World');
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
program byeworld;
|
||||
|
||||
begin
|
||||
writeln(StdErr, 'Goodbye, World!');
|
||||
end.
|
||||
|
|
@ -0,0 +1 @@
|
|||
note "Goodbye, World!";
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
(%stderr) (w) file dup
|
||||
(Goodbye, World!
|
||||
) writestring
|
||||
closefile
|
||||
|
|
@ -0,0 +1 @@
|
|||
STDERR "Goodbye, World!"
|
||||
|
|
@ -0,0 +1 @@
|
|||
Write-Error "Goodbye, World!"
|
||||
|
|
@ -0,0 +1 @@
|
|||
[Console]::Error.WriteLine("Goodbye, World!")
|
||||
|
|
@ -0,0 +1 @@
|
|||
ConsoleError("Goodbye, World!")
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
with files'
|
||||
"Goodbye, World!" tempString dup getLength "/dev/stderr" spew
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
html "<script>
|
||||
window.open('','error_msg','');
|
||||
document.write('Goodbye, World!');
|
||||
</script>""
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
terminal = "Error"
|
||||
output = "Normal text"
|
||||
end
|
||||
|
|
@ -0,0 +1 @@
|
|||
standard_error.print("Goodbye, World!\n");
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
include "short.salm";
|
||||
stderr.print("Goodbye, World!\n");
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
include "shorter.salm";
|
||||
err.print("Goodbye, World!\n");
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
include "shorter.salm";
|
||||
se.print("Goodbye, World!\n");
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
$ include "seed7_05.s7i";
|
||||
|
||||
const proc: main is func
|
||||
begin
|
||||
writeln(STD_ERR, "Goodbye, World!");
|
||||
end func;
|
||||
|
|
@ -0,0 +1 @@
|
|||
inform: 'Goodbye, World!' &target: DebugConsole.
|
||||
|
|
@ -0,0 +1 @@
|
|||
TextIO.output (TextIO.stdErr, "Goodbye, World!\n")
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
$$ MODE TUSCRIPT
|
||||
PRINT/ERROR "hello world"
|
||||
text="goodbye world"
|
||||
PRINT/ERROR text
|
||||
|
|
@ -0,0 +1 @@
|
|||
echo "Goodbye, World!" >&2
|
||||
|
|
@ -0,0 +1 @@
|
|||
echo "Goodbye, World!" >/dev/stderr
|
||||
|
|
@ -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
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
code Text=12;
|
||||
Text(2, "Goodbye, World!")
|
||||
Loading…
Add table
Add a link
Reference in a new issue