langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
1
Task/Hello-world-Text/Neat/hello-world-text.neat
Normal file
1
Task/Hello-world-Text/Neat/hello-world-text.neat
Normal file
|
|
@ -0,0 +1 @@
|
|||
void main() writeln "Goodbye, World!";
|
||||
7
Task/Hello-world-Text/Nemerle/hello-world-text-1.nemerle
Normal file
7
Task/Hello-world-Text/Nemerle/hello-world-text-1.nemerle
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
class Hello
|
||||
{
|
||||
static Main () : void
|
||||
{
|
||||
System.Console.WriteLine ("Goodbye, World!");
|
||||
}
|
||||
}
|
||||
1
Task/Hello-world-Text/Nemerle/hello-world-text-2.nemerle
Normal file
1
Task/Hello-world-Text/Nemerle/hello-world-text-2.nemerle
Normal file
|
|
@ -0,0 +1 @@
|
|||
System.Console.WriteLine("Goodbye, World!");
|
||||
1
Task/Hello-world-Text/NetRexx/hello-world-text.netrexx
Normal file
1
Task/Hello-world-Text/NetRexx/hello-world-text.netrexx
Normal file
|
|
@ -0,0 +1 @@
|
|||
say 'Goodbye, World!'
|
||||
1
Task/Hello-world-Text/Nimrod/hello-world-text.nimrod
Normal file
1
Task/Hello-world-Text/Nimrod/hello-world-text.nimrod
Normal file
|
|
@ -0,0 +1 @@
|
|||
echo("Goodbye, World!")
|
||||
1
Task/Hello-world-Text/OCaml/hello-world-text.ocaml
Normal file
1
Task/Hello-world-Text/OCaml/hello-world-text.ocaml
Normal file
|
|
@ -0,0 +1 @@
|
|||
print_endline "Goodbye, World!"
|
||||
3
Task/Hello-world-Text/OOC/hello-world-text.ooc
Normal file
3
Task/Hello-world-Text/OOC/hello-world-text.ooc
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
main: func {
|
||||
"Goodbye, World!" println()
|
||||
}
|
||||
9
Task/Hello-world-Text/Oberon-2/hello-world-text.oberon-2
Normal file
9
Task/Hello-world-Text/Oberon-2/hello-world-text.oberon-2
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
MODULE Goodbye;
|
||||
IMPORT Out;
|
||||
PROCEDURE World*;
|
||||
BEGIN
|
||||
Out.String("Goodbye, World!");Out.Ln
|
||||
END World;
|
||||
BEGIN
|
||||
World;
|
||||
END Goodbye.
|
||||
5
Task/Hello-world-Text/Objeck/hello-world-text.objeck
Normal file
5
Task/Hello-world-Text/Objeck/hello-world-text.objeck
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
class Hello {
|
||||
function : Main(args : String[]) ~ Nil {
|
||||
"Goodbye, World!"->PrintLine();
|
||||
}
|
||||
}
|
||||
1
Task/Hello-world-Text/Objective-C/hello-world-text-1.m
Normal file
1
Task/Hello-world-Text/Objective-C/hello-world-text-1.m
Normal file
|
|
@ -0,0 +1 @@
|
|||
printf("Goodbye, World!");
|
||||
1
Task/Hello-world-Text/Objective-C/hello-world-text-2.m
Normal file
1
Task/Hello-world-Text/Objective-C/hello-world-text-2.m
Normal file
|
|
@ -0,0 +1 @@
|
|||
printf("%s", [@"Goodbye, World!" UTF8String]);
|
||||
1
Task/Hello-world-Text/Objective-C/hello-world-text-3.m
Normal file
1
Task/Hello-world-Text/Objective-C/hello-world-text-3.m
Normal file
|
|
@ -0,0 +1 @@
|
|||
[@"Goodbye, World!" writeToFile:@"/dev/stdout" atomically:NO encoding:NSUTF8StringEncoding error:NULL];
|
||||
1
Task/Hello-world-Text/Objective-C/hello-world-text-4.m
Normal file
1
Task/Hello-world-Text/Objective-C/hello-world-text-4.m
Normal file
|
|
@ -0,0 +1 @@
|
|||
[[NSFileHandle fileHandleWithStandardOutput] writeData:[@"Goodbye, World!" dataUsingEncoding:NSUTF8StringEncoding]];
|
||||
1
Task/Hello-world-Text/Objective-C/hello-world-text-5.m
Normal file
1
Task/Hello-world-Text/Objective-C/hello-world-text-5.m
Normal file
|
|
@ -0,0 +1 @@
|
|||
NSLog(@"Goodbye, World!");
|
||||
4
Task/Hello-world-Text/Occam/hello-world-text.occam
Normal file
4
Task/Hello-world-Text/Occam/hello-world-text.occam
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
#USE "course.lib"
|
||||
PROC main (CHAN BYTE screen!)
|
||||
out.string("Goodbye, World!*c*n", 0, screen)
|
||||
:
|
||||
1
Task/Hello-world-Text/Octave/hello-world-text-1.octave
Normal file
1
Task/Hello-world-Text/Octave/hello-world-text-1.octave
Normal file
|
|
@ -0,0 +1 @@
|
|||
disp("Goodbye, World!");
|
||||
1
Task/Hello-world-Text/Octave/hello-world-text-2.octave
Normal file
1
Task/Hello-world-Text/Octave/hello-world-text-2.octave
Normal file
|
|
@ -0,0 +1 @@
|
|||
printf("Goodbye, World!");
|
||||
1
Task/Hello-world-Text/Onyx/hello-world-text.onyx
Normal file
1
Task/Hello-world-Text/Onyx/hello-world-text.onyx
Normal file
|
|
@ -0,0 +1 @@
|
|||
`Goodbye, World!\n' print
|
||||
1
Task/Hello-world-Text/Openscad/hello-world-text.scad
Normal file
1
Task/Hello-world-Text/Openscad/hello-world-text.scad
Normal file
|
|
@ -0,0 +1 @@
|
|||
echo("Goodbye, World!");
|
||||
18
Task/Hello-world-Text/Oxygene/hello-world-text.oxy
Normal file
18
Task/Hello-world-Text/Oxygene/hello-world-text.oxy
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
namespace HelloWorld;
|
||||
|
||||
interface
|
||||
|
||||
type
|
||||
HelloClass = class
|
||||
public
|
||||
class method Main;
|
||||
end;
|
||||
|
||||
implementation
|
||||
|
||||
class method HelloClass.Main;
|
||||
begin
|
||||
System.Console.WriteLine('Goodbye, World!');
|
||||
end;
|
||||
|
||||
end.
|
||||
1
Task/Hello-world-Text/Oz/hello-world-text.oz
Normal file
1
Task/Hello-world-Text/Oz/hello-world-text.oz
Normal file
|
|
@ -0,0 +1 @@
|
|||
{Show "Goodbye, World!"}
|
||||
1
Task/Hello-world-Text/PARI-GP/hello-world-text.pari
Normal file
1
Task/Hello-world-Text/PARI-GP/hello-world-text.pari
Normal file
|
|
@ -0,0 +1 @@
|
|||
print("Goodbye, World!")
|
||||
2
Task/Hello-world-Text/PASM/hello-world-text.pasm
Normal file
2
Task/Hello-world-Text/PASM/hello-world-text.pasm
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
print "Goodbye, World!\n"
|
||||
end
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
.globl start
|
||||
.text
|
||||
start:
|
||||
mov $1,r0
|
||||
sys 4; outtext; outlen
|
||||
sys 1
|
||||
rts pc
|
||||
|
||||
.data
|
||||
outtext: <Goodbye, World!\n>
|
||||
outlen = . - outtext
|
||||
1
Task/Hello-world-Text/PL-I/hello-world-text.pli
Normal file
1
Task/Hello-world-Text/PL-I/hello-world-text.pli
Normal file
|
|
@ -0,0 +1 @@
|
|||
put ('Goodbye, World!');
|
||||
4
Task/Hello-world-Text/Pascal/hello-world-text.pascal
Normal file
4
Task/Hello-world-Text/Pascal/hello-world-text.pascal
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
program byeworld;
|
||||
begin
|
||||
writeln('Goodbye, World!');
|
||||
end.
|
||||
1
Task/Hello-world-Text/Perl-6/hello-world-text.pl6
Normal file
1
Task/Hello-world-Text/Perl-6/hello-world-text.pl6
Normal file
|
|
@ -0,0 +1 @@
|
|||
say 'Goodbye, World!';
|
||||
3
Task/Hello-world-Text/Pike/hello-world-text.pike
Normal file
3
Task/Hello-world-Text/Pike/hello-world-text.pike
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
int main(){
|
||||
write("Goodbye, World!\n");
|
||||
}
|
||||
1
Task/Hello-world-Text/Pop11/hello-world-text.pop11
Normal file
1
Task/Hello-world-Text/Pop11/hello-world-text.pop11
Normal file
|
|
@ -0,0 +1 @@
|
|||
printf('Goodbye, World!\n');
|
||||
1
Task/Hello-world-Text/PostScript/hello-world-text-1.ps
Normal file
1
Task/Hello-world-Text/PostScript/hello-world-text-1.ps
Normal file
|
|
@ -0,0 +1 @@
|
|||
(Goodbye, World!) ==
|
||||
1
Task/Hello-world-Text/PostScript/hello-world-text-2.ps
Normal file
1
Task/Hello-world-Text/PostScript/hello-world-text-2.ps
Normal file
|
|
@ -0,0 +1 @@
|
|||
(Goodbye, World!) =
|
||||
1
Task/Hello-world-Text/PostScript/hello-world-text-3.ps
Normal file
1
Task/Hello-world-Text/PostScript/hello-world-text-3.ps
Normal file
|
|
@ -0,0 +1 @@
|
|||
(Goodbye, World!) print
|
||||
4
Task/Hello-world-Text/PowerShell/hello-world-text.psh
Normal file
4
Task/Hello-world-Text/PowerShell/hello-world-text.psh
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
Write-Host "Goodbye, World!"
|
||||
|
||||
# For extra flair, you can specify colored output
|
||||
Write-Host "Goodbye, World!" -foregroundcolor red
|
||||
1
Task/Hello-world-Text/ProDOS/hello-world-text.dos
Normal file
1
Task/Hello-world-Text/ProDOS/hello-world-text.dos
Normal file
|
|
@ -0,0 +1 @@
|
|||
printline Goodbye, World!
|
||||
3
Task/Hello-world-Text/Pure/hello-world-text.pure
Normal file
3
Task/Hello-world-Text/Pure/hello-world-text.pure
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
using system;
|
||||
|
||||
puts "Goodbye, World!\n" ;
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
OpenConsole()
|
||||
PrintN("Goodbye, World!")
|
||||
Input() ; Wait for enter
|
||||
1
Task/Hello-world-Text/Quill/hello-world-text.quill
Normal file
1
Task/Hello-world-Text/Quill/hello-world-text.quill
Normal file
|
|
@ -0,0 +1 @@
|
|||
"Goodbye, World!" print
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
Function Run(args() as String) As Integer
|
||||
Print "Goodbye, World!"
|
||||
Quit
|
||||
End Function
|
||||
1
Task/Hello-world-Text/REBOL/hello-world-text.rebol
Normal file
1
Task/Hello-world-Text/REBOL/hello-world-text.rebol
Normal file
|
|
@ -0,0 +1 @@
|
|||
print "Goodbye, World!"
|
||||
12
Task/Hello-world-Text/RTL-2/hello-world-text.rtl
Normal file
12
Task/Hello-world-Text/RTL-2/hello-world-text.rtl
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
TITLE Goodbye World;
|
||||
|
||||
LET NL=10;
|
||||
|
||||
EXT PROC(REF ARRAY BYTE) TWRT;
|
||||
|
||||
ENT PROC INT RRJOB();
|
||||
|
||||
TWRT("Goodbye, World!#NL#");
|
||||
RETURN(1);
|
||||
|
||||
ENDPROC;
|
||||
1
Task/Hello-world-Text/Raven/hello-world-text.raven
Normal file
1
Task/Hello-world-Text/Raven/hello-world-text.raven
Normal file
|
|
@ -0,0 +1 @@
|
|||
'Goodbye, World!' print
|
||||
1
Task/Hello-world-Text/Retro/hello-world-text.retro
Normal file
1
Task/Hello-world-Text/Retro/hello-world-text.retro
Normal file
|
|
@ -0,0 +1 @@
|
|||
"Goodbye, World!" puts
|
||||
1
Task/Hello-world-Text/Run-BASIC/hello-world-text.run
Normal file
1
Task/Hello-world-Text/Run-BASIC/hello-world-text.run
Normal file
|
|
@ -0,0 +1 @@
|
|||
print "Goodbye, World!"
|
||||
3
Task/Hello-world-Text/Rust/hello-world-text.rust
Normal file
3
Task/Hello-world-Text/Rust/hello-world-text.rust
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
io::println("Goodbye, World!");
|
||||
}
|
||||
4
Task/Hello-world-Text/SAS/hello-world-text.sas
Normal file
4
Task/Hello-world-Text/SAS/hello-world-text.sas
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
/* Using a data step. Will print the string in the log window */
|
||||
data _null_;
|
||||
put "Goodbye, World!";
|
||||
run;
|
||||
2
Task/Hello-world-Text/SIMPOL/hello-world-text.simpol
Normal file
2
Task/Hello-world-Text/SIMPOL/hello-world-text.simpol
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
function main()
|
||||
end function "Goodbye, World!{d}{a}"
|
||||
2
Task/Hello-world-Text/SNOBOL4/hello-world-text.sno
Normal file
2
Task/Hello-world-Text/SNOBOL4/hello-world-text.sno
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
OUTPUT = "Goodbye, World!"
|
||||
END
|
||||
1
Task/Hello-world-Text/Salmon/hello-world-text-1.salmon
Normal file
1
Task/Hello-world-Text/Salmon/hello-world-text-1.salmon
Normal file
|
|
@ -0,0 +1 @@
|
|||
"Goodbye, World!"!
|
||||
1
Task/Hello-world-Text/Salmon/hello-world-text-2.salmon
Normal file
1
Task/Hello-world-Text/Salmon/hello-world-text-2.salmon
Normal file
|
|
@ -0,0 +1 @@
|
|||
print("Goodbye, World!\n");
|
||||
1
Task/Hello-world-Text/Salmon/hello-world-text-3.salmon
Normal file
1
Task/Hello-world-Text/Salmon/hello-world-text-3.salmon
Normal file
|
|
@ -0,0 +1 @@
|
|||
standard_output.print("Goodbye, World!\n");
|
||||
6
Task/Hello-world-Text/Seed7/hello-world-text.seed7
Normal file
6
Task/Hello-world-Text/Seed7/hello-world-text.seed7
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
$ include "seed7_05.s7i";
|
||||
|
||||
const proc: main is func
|
||||
begin
|
||||
writeln("Goodbye, World!");
|
||||
end func;
|
||||
1
Task/Hello-world-Text/Self/hello-world-text.self
Normal file
1
Task/Hello-world-Text/Self/hello-world-text.self
Normal file
|
|
@ -0,0 +1 @@
|
|||
'Goodbye, World!' printLine.
|
||||
1
Task/Hello-world-Text/Shiny/hello-world-text.shiny
Normal file
1
Task/Hello-world-Text/Shiny/hello-world-text.shiny
Normal file
|
|
@ -0,0 +1 @@
|
|||
say 'Goodbye, World!'
|
||||
10
Task/Hello-world-Text/Sisal/hello-world-text.sisal
Normal file
10
Task/Hello-world-Text/Sisal/hello-world-text.sisal
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
define main
|
||||
|
||||
% Sisal doesn't yet have a string built-in.
|
||||
% Let's define one as an array of characters.
|
||||
|
||||
type string = array[character];
|
||||
|
||||
function main(returns string)
|
||||
"Goodbye, World!"
|
||||
end function
|
||||
1
Task/Hello-world-Text/Slate/hello-world-text.slate
Normal file
1
Task/Hello-world-Text/Slate/hello-world-text.slate
Normal file
|
|
@ -0,0 +1 @@
|
|||
inform: 'Goodbye, World!'.
|
||||
1
Task/Hello-world-Text/Standard-ML/hello-world-text.ml
Normal file
1
Task/Hello-world-Text/Standard-ML/hello-world-text.ml
Normal file
|
|
@ -0,0 +1 @@
|
|||
print "Goodbye, World!\n"
|
||||
1
Task/Hello-world-Text/Suneido/hello-world-text.suneido
Normal file
1
Task/Hello-world-Text/Suneido/hello-world-text.suneido
Normal file
|
|
@ -0,0 +1 @@
|
|||
Print("Goodbye, World!")
|
||||
1
Task/Hello-world-Text/TI-89-BASIC/hello-world-text.ti-89
Normal file
1
Task/Hello-world-Text/TI-89-BASIC/hello-world-text.ti-89
Normal file
|
|
@ -0,0 +1 @@
|
|||
Disp "Goodbye, World!"
|
||||
1
Task/Hello-world-Text/TPP/hello-world-text.tpp
Normal file
1
Task/Hello-world-Text/TPP/hello-world-text.tpp
Normal file
|
|
@ -0,0 +1 @@
|
|||
Goodbye, World!
|
||||
2
Task/Hello-world-Text/TUSCRIPT/hello-world-text.tuscript
Normal file
2
Task/Hello-world-Text/TUSCRIPT/hello-world-text.tuscript
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
$$ MODE TUSCRIPT
|
||||
PRINT "Goodbye, World!"
|
||||
1
Task/Hello-world-Text/Teco/hello-world-text.teco
Normal file
1
Task/Hello-world-Text/Teco/hello-world-text.teco
Normal file
|
|
@ -0,0 +1 @@
|
|||
^AGoodbye, World^A$$
|
||||
|
|
@ -0,0 +1 @@
|
|||
echo("Goodbye, World!");
|
||||
1
Task/Hello-world-Text/Transact-SQL/hello-world-text.sql
Normal file
1
Task/Hello-world-Text/Transact-SQL/hello-world-text.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
PRINT "Goodbye, World!"
|
||||
1
Task/Hello-world-Text/Trith/hello-world-text.trith
Normal file
1
Task/Hello-world-Text/Trith/hello-world-text.trith
Normal file
|
|
@ -0,0 +1 @@
|
|||
"Goodbye, World!" print
|
||||
2
Task/Hello-world-Text/UNIX-Shell/hello-world-text-1.sh
Normal file
2
Task/Hello-world-Text/UNIX-Shell/hello-world-text-1.sh
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
echo "Goodbye, World!"
|
||||
2
Task/Hello-world-Text/UNIX-Shell/hello-world-text-2.sh
Normal file
2
Task/Hello-world-Text/UNIX-Shell/hello-world-text-2.sh
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
#!/bin/csh -f
|
||||
echo "Goodbye, World\!"
|
||||
1
Task/Hello-world-Text/Unlambda/hello-world-text.unlambda
Normal file
1
Task/Hello-world-Text/Unlambda/hello-world-text.unlambda
Normal file
|
|
@ -0,0 +1 @@
|
|||
`r``````````````.G.o.o.d.b.y.e.,. .W.o.r.l.di
|
||||
3
Task/Hello-world-Text/Ursala/hello-world-text-1.ursala
Normal file
3
Task/Hello-world-Text/Ursala/hello-world-text-1.ursala
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
#show+
|
||||
|
||||
main = -[Goodbye, World!]-
|
||||
5
Task/Hello-world-Text/Ursala/hello-world-text-2.ursala
Normal file
5
Task/Hello-world-Text/Ursala/hello-world-text-2.ursala
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
#import std
|
||||
|
||||
#executable ('parameterized','')
|
||||
|
||||
main = <file[contents: -[Goodbye, World!]-]>!
|
||||
1
Task/Hello-world-Text/V/hello-world-text.v
Normal file
1
Task/Hello-world-Text/V/hello-world-text.v
Normal file
|
|
@ -0,0 +1 @@
|
|||
"Goodbye, World!" puts
|
||||
1
Task/Hello-world-Text/VBScript/hello-world-text.vbscript
Normal file
1
Task/Hello-world-Text/VBScript/hello-world-text.vbscript
Normal file
|
|
@ -0,0 +1 @@
|
|||
WScript.Echo("Goodbye, World!")
|
||||
16
Task/Hello-world-Text/VHDL/hello-world-text.vhdl
Normal file
16
Task/Hello-world-Text/VHDL/hello-world-text.vhdl
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
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'("Goodbye, World!"));
|
||||
writeline(OUTPUT, line_out);
|
||||
wait; -- needed to stop the execution
|
||||
end process;
|
||||
end architecture beh;
|
||||
3
Task/Hello-world-Text/Vala/hello-world-text.vala
Normal file
3
Task/Hello-world-Text/Vala/hello-world-text.vala
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
void main(){
|
||||
stdout.printf("Goodbye, World!\n");
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
Message("Goodbye, World!")
|
||||
1
Task/Hello-world-Text/Whenever/hello-world-text.whenever
Normal file
1
Task/Hello-world-Text/Whenever/hello-world-text.whenever
Normal file
|
|
@ -0,0 +1 @@
|
|||
1 print("Goodbye, World!");
|
||||
15
Task/Hello-world-Text/X86-Assembly/hello-world-text.x86
Normal file
15
Task/Hello-world-Text/X86-Assembly/hello-world-text.x86
Normal 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, 1
|
||||
mov eax, 4
|
||||
int 80h
|
||||
|
||||
mov ebx, 0
|
||||
mov eax, 1
|
||||
int 80h
|
||||
2
Task/Hello-world-Text/XL/hello-world-text.xl
Normal file
2
Task/Hello-world-Text/XL/hello-world-text.xl
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
use XL.UI.CONSOLE
|
||||
WriteLn "Goodbye, World!"
|
||||
3
Task/Hello-world-Text/XPL0/hello-world-text.xpl0
Normal file
3
Task/Hello-world-Text/XPL0/hello-world-text.xpl0
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
code Text=12;
|
||||
Text(0, "Goodbye, World!
|
||||
")
|
||||
2
Task/Hello-world-Text/XSLT/hello-world-text.xslt
Normal file
2
Task/Hello-world-Text/XSLT/hello-world-text.xslt
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
<xsl:text>Goodbye, World!
|
||||
</xsl:text>
|
||||
1
Task/Hello-world-Text/Yorick/hello-world-text.yorick
Normal file
1
Task/Hello-world-Text/Yorick/hello-world-text.yorick
Normal file
|
|
@ -0,0 +1 @@
|
|||
write, "Goodbye, World!"
|
||||
18
Task/Hello-world-Text/Z80-Assembly/hello-world-text.z80
Normal file
18
Task/Hello-world-Text/Z80-Assembly/hello-world-text.z80
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
org $4000
|
||||
|
||||
txt_output: equ $bb5a
|
||||
|
||||
push hl
|
||||
ld hl,world
|
||||
|
||||
print: ld a,(hl)
|
||||
cp 0
|
||||
jr z,end
|
||||
call txt_output
|
||||
inc hl
|
||||
jr print
|
||||
|
||||
end: pop hl
|
||||
ret
|
||||
|
||||
world: defm "Goodbye, World!\r\n\0"
|
||||
Loading…
Add table
Add a link
Reference in a new issue