A-M baby
This commit is contained in:
parent
764da6cbbb
commit
db842d013d
19005 changed files with 197040 additions and 7 deletions
5
Task/Hello-world-Text/0815/hello-world-text.0815
Normal file
5
Task/Hello-world-Text/0815/hello-world-text.0815
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<:47:x<:6F:=<:64:$=$$=$
|
||||
<:62:x<:79:=<:65:$=$=$
|
||||
<:2C:x<:20:=<:57:$=$=$
|
||||
<:6F:x<:72:=<:6C:$=$=$
|
||||
<:64:x<:21:=<:0D:$=$=$
|
||||
8
Task/Hello-world-Text/0DESCRIPTION
Normal file
8
Task/Hello-world-Text/0DESCRIPTION
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{{selection|Short Circuit|Console Program Basics}}In this User Output task, the goal is to display the string "Goodbye, World!" [sic] on a text console.
|
||||
|
||||
'''See also'''
|
||||
* [[Hello world/Graphical]]
|
||||
* [[Hello world/Line Printer]]
|
||||
* [[Hello world/Newline omission]]
|
||||
* [[Hello world/Standard error]]
|
||||
* [[Hello world/Web server]]
|
||||
2
Task/Hello-world-Text/1META.yaml
Normal file
2
Task/Hello-world-Text/1META.yaml
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
note: Basic language learning
|
||||
16
Task/Hello-world-Text/360-Assembly/hello-world-text.360
Normal file
16
Task/Hello-world-Text/360-Assembly/hello-world-text.360
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{using native SVC (Supervisor Call) to write to system console}
|
||||
|
||||
LA 1,MSGAREA Point Register 1 to message area
|
||||
SVC 35 Invoke SVC 35 (Write to Operator)
|
||||
BR 14 Return
|
||||
MSGAREA EQU * Message Area
|
||||
DC AL2(19) Total area length = 19 (Prefix length:4 + Data Length:15)
|
||||
DC XL2'00' 2 bytes binary of zeros
|
||||
DC C'Goodbye, World!' Text to be written to system console
|
||||
END
|
||||
|
||||
{using WTO Macro to generate SVC 35 and message area}
|
||||
|
||||
WTO 'Goodbye, World!'
|
||||
BR 14 Return
|
||||
END
|
||||
1
Task/Hello-world-Text/4DOS-Batch/hello-world-text.4dos
Normal file
1
Task/Hello-world-Text/4DOS-Batch/hello-world-text.4dos
Normal file
|
|
@ -0,0 +1 @@
|
|||
echo Goodbye, World!
|
||||
22
Task/Hello-world-Text/6502-Assembly/hello-world-text.6502
Normal file
22
Task/Hello-world-Text/6502-Assembly/hello-world-text.6502
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
; goodbyeworld.s for C= 8-bit machines, ca65 assembler format.
|
||||
; String printing limited to strings of 256 characters or less.
|
||||
|
||||
a_cr = $0d ; Carriage return.
|
||||
bsout = $ffd2 ; KERNAL ROM, output a character to current device.
|
||||
|
||||
.code
|
||||
|
||||
ldx #0 ; Starting index 0 in X register.
|
||||
printnext:
|
||||
lda text,x ; Get character from string.
|
||||
beq done ; If we read a 0 we're done.
|
||||
jsr bsout ; Output character.
|
||||
inx ; Increment index to next character.
|
||||
bne printnext ; Repeat if index doesn't overflow to 0.
|
||||
done:
|
||||
rts ; Return from subroutine.
|
||||
|
||||
.rodata
|
||||
|
||||
text:
|
||||
.byte "Goodbye, World!", a_cr, 0
|
||||
31
Task/Hello-world-Text/6800-Assembly/hello-world-text.6800
Normal file
31
Task/Hello-world-Text/6800-Assembly/hello-world-text.6800
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
.cr 6800
|
||||
.tf gbye6800.obj,AP1
|
||||
.lf gbye6800
|
||||
;=====================================================;
|
||||
; Goodbye, World! for the Motorola 6800 ;
|
||||
; by barrym 2013-03-17 ;
|
||||
;-----------------------------------------------------;
|
||||
; Prints the message "Goodbye, World!" to an ascii ;
|
||||
; terminal (console) connected to a 1970s vintage ;
|
||||
; SWTPC 6800 system, which is the target device for ;
|
||||
; this assembly. ;
|
||||
; Many thanks to: ;
|
||||
; swtpc.com for hosting Michael Holley's documents! ;
|
||||
; sbprojects.com for a very nice assembler! ;
|
||||
; swtpcemu.com for a very capable emulator! ;
|
||||
; reg x is the string pointer ;
|
||||
; reg a holds the ascii char to be output ;
|
||||
;-----------------------------------------------------;
|
||||
outeee = $e1d1 ROM: console putchar routine
|
||||
.or $0f00
|
||||
;-----------------------------------------------------;
|
||||
main ldx #string Point to the string
|
||||
bra puts and print it
|
||||
outs jsr outeee Emit a as ascii
|
||||
inx Advance the string pointer
|
||||
puts ldaa ,x Load a string character
|
||||
bne outs Print it if non-null
|
||||
swi else return to the monitor
|
||||
;=====================================================;
|
||||
string .as "Goodbye, World!",#13,#10,#0
|
||||
.en
|
||||
16
Task/Hello-world-Text/8086-Assembly/hello-world-text.8086
Normal file
16
Task/Hello-world-Text/8086-Assembly/hello-world-text.8086
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
DOSSEG
|
||||
.MODEL TINY
|
||||
.DATA
|
||||
TXT DB "Goodbye, World!$"
|
||||
.CODE
|
||||
START:
|
||||
MOV ax, @DATA
|
||||
MOV ds, ax
|
||||
|
||||
MOV ah, 09h ; prepare output function
|
||||
MOV dx, OFFSET TXT ; set offset
|
||||
INT 21h ; output string TXT
|
||||
|
||||
MOV AX, 4C00h ; go back to DOS
|
||||
INT 21h
|
||||
END START
|
||||
2
Task/Hello-world-Text/ABAP/hello-world-text.abap
Normal file
2
Task/Hello-world-Text/ABAP/hello-world-text.abap
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
REPORT zgoodbyeworld.
|
||||
WRITE 'Goodbye, World!'.
|
||||
1
Task/Hello-world-Text/ACL2/hello-world-text.acl2
Normal file
1
Task/Hello-world-Text/ACL2/hello-world-text.acl2
Normal file
|
|
@ -0,0 +1 @@
|
|||
(cw "Goodbye, World!~%")
|
||||
3
Task/Hello-world-Text/ALGOL-68/hello-world-text.alg
Normal file
3
Task/Hello-world-Text/ALGOL-68/hello-world-text.alg
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
main: (
|
||||
printf($"Goodbye, World!"l$)
|
||||
)
|
||||
1
Task/Hello-world-Text/ATS/hello-world-text.ats
Normal file
1
Task/Hello-world-Text/ATS/hello-world-text.ats
Normal file
|
|
@ -0,0 +1 @@
|
|||
implement main () = print "Goodbye, World!\n"
|
||||
1
Task/Hello-world-Text/AWK/hello-world-text-1.awk
Normal file
1
Task/Hello-world-Text/AWK/hello-world-text-1.awk
Normal file
|
|
@ -0,0 +1 @@
|
|||
BEGIN{print "Goodbye, World!"}
|
||||
3
Task/Hello-world-Text/AWK/hello-world-text-2.awk
Normal file
3
Task/Hello-world-Text/AWK/hello-world-text-2.awk
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
END {
|
||||
print "Goodbye, World!"
|
||||
}
|
||||
4
Task/Hello-world-Text/AWK/hello-world-text-3.awk
Normal file
4
Task/Hello-world-Text/AWK/hello-world-text-3.awk
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
// {
|
||||
print "Goodbye, World!"
|
||||
exit
|
||||
}
|
||||
3
Task/Hello-world-Text/AWK/hello-world-text-4.awk
Normal file
3
Task/Hello-world-Text/AWK/hello-world-text-4.awk
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
// {
|
||||
print "Goodbye, World!"
|
||||
}
|
||||
1
Task/Hello-world-Text/AWK/hello-world-text-5.awk
Normal file
1
Task/Hello-world-Text/AWK/hello-world-text-5.awk
Normal file
|
|
@ -0,0 +1 @@
|
|||
//
|
||||
1
Task/Hello-world-Text/ActionScript/hello-world-text.as
Normal file
1
Task/Hello-world-Text/ActionScript/hello-world-text.as
Normal file
|
|
@ -0,0 +1 @@
|
|||
trace("Goodbye, World!");
|
||||
5
Task/Hello-world-Text/Ada/hello-world-text.ada
Normal file
5
Task/Hello-world-Text/Ada/hello-world-text.ada
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
with Ada.Text_IO; use Ada.Text_IO;
|
||||
procedure Main is
|
||||
begin
|
||||
Put_Line ("Goodbye, World!");
|
||||
end Main;
|
||||
1
Task/Hello-world-Text/Aime/hello-world-text-1.aime
Normal file
1
Task/Hello-world-Text/Aime/hello-world-text-1.aime
Normal file
|
|
@ -0,0 +1 @@
|
|||
o_text("GOODBYE, WORLD!\n");
|
||||
7
Task/Hello-world-Text/Aime/hello-world-text-2.aime
Normal file
7
Task/Hello-world-Text/Aime/hello-world-text-2.aime
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
integer
|
||||
main(void)
|
||||
{
|
||||
o_text("GOODBYE, WORLD!\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
1
Task/Hello-world-Text/Algae/hello-world-text.algae
Normal file
1
Task/Hello-world-Text/Algae/hello-world-text.algae
Normal file
|
|
@ -0,0 +1 @@
|
|||
printf("Goodbye, World\n");
|
||||
1
Task/Hello-world-Text/Alore/hello-world-text.alore
Normal file
1
Task/Hello-world-Text/Alore/hello-world-text.alore
Normal file
|
|
@ -0,0 +1 @@
|
|||
Print('Goodbye, World!')
|
||||
|
|
@ -0,0 +1 @@
|
|||
system.println("Goodbye, World!")
|
||||
3
Task/Hello-world-Text/AmigaE/hello-world-text.amiga
Normal file
3
Task/Hello-world-Text/AmigaE/hello-world-text.amiga
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
PROC main()
|
||||
WriteF('Goodbye, World!\n')
|
||||
ENDPROC
|
||||
|
|
@ -0,0 +1 @@
|
|||
"Goodbye, World!"
|
||||
|
|
@ -0,0 +1 @@
|
|||
log "Goodbye, World!"
|
||||
|
|
@ -0,0 +1 @@
|
|||
PRINT "GOODBYE, WORLD!"
|
||||
2
Task/Hello-world-Text/Argile/hello-world-text.argile
Normal file
2
Task/Hello-world-Text/Argile/hello-world-text.argile
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
use std
|
||||
print "Goodbye, World!"
|
||||
|
|
@ -0,0 +1 @@
|
|||
write('Goodbye, World!');
|
||||
3
Task/Hello-world-Text/AutoHotkey/hello-world-text-1.ahk
Normal file
3
Task/Hello-world-Text/AutoHotkey/hello-world-text-1.ahk
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
DllCall("AllocConsole")
|
||||
FileAppend, Goodbye`, World!, CONOUT$
|
||||
FileReadLine, _, CONIN$, 1
|
||||
2
Task/Hello-world-Text/AutoHotkey/hello-world-text-2.ahk
Normal file
2
Task/Hello-world-Text/AutoHotkey/hello-world-text-2.ahk
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DllCall("AttachConsole", "int", -1)
|
||||
FileAppend, Goodbye`, World!, CONOUT$
|
||||
1
Task/Hello-world-Text/AutoHotkey/hello-world-text-3.ahk
Normal file
1
Task/Hello-world-Text/AutoHotkey/hello-world-text-3.ahk
Normal file
|
|
@ -0,0 +1 @@
|
|||
SendInput Goodbye, World{!}
|
||||
1
Task/Hello-world-Text/AutoIt/hello-world-text.autoit
Normal file
1
Task/Hello-world-Text/AutoIt/hello-world-text.autoit
Normal file
|
|
@ -0,0 +1 @@
|
|||
ConsoleWrite("Goodbye, World!" & @CRLF)
|
||||
1
Task/Hello-world-Text/BASIC/hello-world-text-1.bas
Normal file
1
Task/Hello-world-Text/BASIC/hello-world-text-1.bas
Normal file
|
|
@ -0,0 +1 @@
|
|||
10 print "Goodbye, World!"
|
||||
1
Task/Hello-world-Text/BASIC/hello-world-text-2.bas
Normal file
1
Task/Hello-world-Text/BASIC/hello-world-text-2.bas
Normal file
|
|
@ -0,0 +1 @@
|
|||
PRINT "Goodbye, World!"
|
||||
1
Task/Hello-world-Text/BASIC256/hello-world-text.basic256
Normal file
1
Task/Hello-world-Text/BASIC256/hello-world-text.basic256
Normal file
|
|
@ -0,0 +1 @@
|
|||
PRINT "Goodbye, World!"
|
||||
1
Task/Hello-world-Text/BBC-BASIC/hello-world-text.bbc
Normal file
1
Task/Hello-world-Text/BBC-BASIC/hello-world-text.bbc
Normal file
|
|
@ -0,0 +1 @@
|
|||
PRINT "Goodbye, World!"
|
||||
6
Task/Hello-world-Text/BCPL/hello-world-text.bcpl
Normal file
6
Task/Hello-world-Text/BCPL/hello-world-text.bcpl
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
GET "libhdr"
|
||||
|
||||
LET start() = VALOF
|
||||
{ writef("Goodbye, World!")
|
||||
RESULTIS 0
|
||||
}
|
||||
1
Task/Hello-world-Text/Babel/hello-world-text.pb
Normal file
1
Task/Hello-world-Text/Babel/hello-world-text.pb
Normal file
|
|
@ -0,0 +1 @@
|
|||
main: { "Goodbye, World!" << }
|
||||
1
Task/Hello-world-Text/Batch-File/hello-world-text-1.bat
Normal file
1
Task/Hello-world-Text/Batch-File/hello-world-text-1.bat
Normal file
|
|
@ -0,0 +1 @@
|
|||
echo Goodbye, World!
|
||||
2
Task/Hello-world-Text/Batch-File/hello-world-text-2.bat
Normal file
2
Task/Hello-world-Text/Batch-File/hello-world-text-2.bat
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
setlocal enableDelayedExpansion
|
||||
echo Goodbye, World^^^!
|
||||
1
Task/Hello-world-Text/Befunge/hello-world-text.bf
Normal file
1
Task/Hello-world-Text/Befunge/hello-world-text.bf
Normal file
|
|
@ -0,0 +1 @@
|
|||
0"!dlroW ,eybdooG">:#,_@
|
||||
5
Task/Hello-world-Text/Blast/hello-world-text.blast
Normal file
5
Task/Hello-world-Text/Blast/hello-world-text.blast
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# This will display a goodbye message on the terminal screen
|
||||
.begin
|
||||
display "Goodbye, World!"
|
||||
return
|
||||
# This is the end of the script.
|
||||
1
Task/Hello-world-Text/Boo/hello-world-text.boo
Normal file
1
Task/Hello-world-Text/Boo/hello-world-text.boo
Normal file
|
|
@ -0,0 +1 @@
|
|||
print "Goodbye, World!"
|
||||
4
Task/Hello-world-Text/Brace/hello-world-text.brace
Normal file
4
Task/Hello-world-Text/Brace/hello-world-text.brace
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env bx
|
||||
use b
|
||||
Main:
|
||||
say("Goodbye, World!")
|
||||
1
Task/Hello-world-Text/Bracmat/hello-world-text.bracmat
Normal file
1
Task/Hello-world-Text/Bracmat/hello-world-text.bracmat
Normal file
|
|
@ -0,0 +1 @@
|
|||
put$"Goodbye, World!"
|
||||
59
Task/Hello-world-Text/Brainf---/hello-world-text-1.bf
Normal file
59
Task/Hello-world-Text/Brainf---/hello-world-text-1.bf
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
+++++ +++++ First cell 10 (its a counter and we will be "multiplying")
|
||||
|
||||
[
|
||||
>+ 10 times 1 is 10
|
||||
>+++ 10 times 3 is 30
|
||||
>++++ etc etc
|
||||
>+++++ ++
|
||||
>+++++ +++
|
||||
>+++++ ++++
|
||||
>+++++ +++++
|
||||
>+++++ ++++++
|
||||
>+++++ +++++++
|
||||
<<<<<<<<< - go back to counter and subtract 1
|
||||
]
|
||||
|
||||
printing G
|
||||
>>>> + .
|
||||
|
||||
o twice
|
||||
>>>> + ..
|
||||
|
||||
d
|
||||
< .
|
||||
|
||||
b
|
||||
< +++++ +++ .
|
||||
|
||||
y
|
||||
>>> + .
|
||||
|
||||
e
|
||||
<< + .
|
||||
|
||||
COMMA
|
||||
<<<< ++++ .
|
||||
|
||||
SPACE
|
||||
< ++ .
|
||||
|
||||
W
|
||||
>>> +++++ ++ .
|
||||
|
||||
o
|
||||
>>> .
|
||||
|
||||
r
|
||||
+++ .
|
||||
|
||||
l
|
||||
< +++++ ++ .
|
||||
|
||||
d
|
||||
----- --- .
|
||||
|
||||
!
|
||||
<<<<< + .
|
||||
|
||||
CRLF
|
||||
< +++ . --- .
|
||||
4
Task/Hello-world-Text/Brainf---/hello-world-text-2.bf
Normal file
4
Task/Hello-world-Text/Brainf---/hello-world-text-2.bf
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
++++++++++[>+>+++>++++>+++++++>++++++++>+++++++++>++
|
||||
++++++++>+++++++++++>++++++++++++<<<<<<<<<-]>>>>+.>>>
|
||||
>+..<.<++++++++.>>>+.<<+.<<<<++++.<++.>>>+++++++.>>>.+++.
|
||||
<+++++++.--------.<<<<<+.<+++.---.
|
||||
1
Task/Hello-world-Text/Brat/hello-world-text.brat
Normal file
1
Task/Hello-world-Text/Brat/hello-world-text.brat
Normal file
|
|
@ -0,0 +1 @@
|
|||
p "Goodbye, World!"
|
||||
1
Task/Hello-world-Text/Brlcad/hello-world-text.brlcad
Normal file
1
Task/Hello-world-Text/Brlcad/hello-world-text.brlcad
Normal file
|
|
@ -0,0 +1 @@
|
|||
echo Goodbye, World!
|
||||
1
Task/Hello-world-Text/Burlesque/hello-world-text.blq
Normal file
1
Task/Hello-world-Text/Burlesque/hello-world-text.blq
Normal file
|
|
@ -0,0 +1 @@
|
|||
"Goodbye, World!"sh
|
||||
5
Task/Hello-world-Text/C++-CLI/hello-world-text.cpp
Normal file
5
Task/Hello-world-Text/C++-CLI/hello-world-text.cpp
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
using namespace System;
|
||||
int main()
|
||||
{
|
||||
Console::WriteLine("Goodbye, World!");
|
||||
}
|
||||
6
Task/Hello-world-Text/C++/hello-world-text.cpp
Normal file
6
Task/Hello-world-Text/C++/hello-world-text.cpp
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#include <iostream>
|
||||
|
||||
int main () {
|
||||
std::cout << "Goodbye, World!" << std::endl;
|
||||
return std::cout.bad();
|
||||
}
|
||||
8
Task/Hello-world-Text/C/hello-world-text-1.c
Normal file
8
Task/Hello-world-Text/C/hello-world-text-1.c
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
printf("Goodbye, World!\n");
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
8
Task/Hello-world-Text/C/hello-world-text-2.c
Normal file
8
Task/Hello-world-Text/C/hello-world-text-2.c
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
puts("Goodbye, World!");
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
1
Task/Hello-world-Text/C1R/hello-world-text.c1r
Normal file
1
Task/Hello-world-Text/C1R/hello-world-text.c1r
Normal file
|
|
@ -0,0 +1 @@
|
|||
Hello_world/Text
|
||||
1
Task/Hello-world-Text/CLIPS/hello-world-text.clips
Normal file
1
Task/Hello-world-Text/CLIPS/hello-world-text.clips
Normal file
|
|
@ -0,0 +1 @@
|
|||
(printout t "Goodbye, World!" crlf)
|
||||
1
Task/Hello-world-Text/CMake/hello-world-text.cmake
Normal file
1
Task/Hello-world-Text/CMake/hello-world-text.cmake
Normal file
|
|
@ -0,0 +1 @@
|
|||
message(STATUS "Goodbye, World!")
|
||||
4
Task/Hello-world-Text/COBOL/hello-world-text.cobol
Normal file
4
Task/Hello-world-Text/COBOL/hello-world-text.cobol
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
program-id. hello.
|
||||
procedure division.
|
||||
display "Goodbye, World!".
|
||||
stop run.
|
||||
1
Task/Hello-world-Text/Cat/hello-world-text.cat
Normal file
1
Task/Hello-world-Text/Cat/hello-world-text.cat
Normal file
|
|
@ -0,0 +1 @@
|
|||
"Goodbye, World!" writeln
|
||||
1
Task/Hello-world-Text/Cduce/hello-world-text.cduce
Normal file
1
Task/Hello-world-Text/Cduce/hello-world-text.cduce
Normal file
|
|
@ -0,0 +1 @@
|
|||
print "Goodbye, World!";;
|
||||
36
Task/Hello-world-Text/Chef/hello-world-text.chef
Normal file
36
Task/Hello-world-Text/Chef/hello-world-text.chef
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
Goodbye World Souffle.
|
||||
|
||||
Ingredients.
|
||||
71 g green beans
|
||||
111 cups oil
|
||||
98 g butter
|
||||
121 ml yogurt
|
||||
101 eggs
|
||||
44 g wheat flour
|
||||
32 zucchinis
|
||||
119 ml water
|
||||
114 g red salmon
|
||||
108 g lard
|
||||
100 g dijon mustard
|
||||
33 potatoes
|
||||
|
||||
Method.
|
||||
Put potatoes into the mixing bowl.
|
||||
Put dijon mustard into the mixing bowl.
|
||||
Put lard into the mixing bowl.
|
||||
Put red salmon into the mixing bowl.
|
||||
Put oil into the mixing bowl.
|
||||
Put water into the mixing bowl.
|
||||
Put zucchinis into the mixing bowl.
|
||||
Put wheat flour into the mixing bowl.
|
||||
Put eggs into the mixing bowl.
|
||||
Put yogurt into the mixing bowl.
|
||||
Put butter into the mixing bowl.
|
||||
Put dijon mustard into the mixing bowl.
|
||||
Put oil into the mixing bowl.
|
||||
Put oil into the mixing bowl.
|
||||
Put green beans into the mixing bowl.
|
||||
Liquefy contents of the mixing bowl.
|
||||
Pour contents of the mixing bowl into the baking dish.
|
||||
|
||||
Serves 1.
|
||||
3
Task/Hello-world-Text/Clay/hello-world-text.clay
Normal file
3
Task/Hello-world-Text/Clay/hello-world-text.clay
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
main() {
|
||||
println("Goodbye, World!");
|
||||
}
|
||||
1
Task/Hello-world-Text/Clean/hello-world-text.clean
Normal file
1
Task/Hello-world-Text/Clean/hello-world-text.clean
Normal file
|
|
@ -0,0 +1 @@
|
|||
Start = "Goodbye, World!"
|
||||
1
Task/Hello-world-Text/Clojure/hello-world-text.clj
Normal file
1
Task/Hello-world-Text/Clojure/hello-world-text.clj
Normal file
|
|
@ -0,0 +1 @@
|
|||
(println "Goodbye, World!")
|
||||
3
Task/Hello-world-Text/Cobra/hello-world-text.cobra
Normal file
3
Task/Hello-world-Text/Cobra/hello-world-text.cobra
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
class Hello
|
||||
def main
|
||||
print 'Goodbye, World!'
|
||||
|
|
@ -0,0 +1 @@
|
|||
console.log "Goodbye, World!"
|
||||
1
Task/Hello-world-Text/ColdFusion/hello-world-text.cfm
Normal file
1
Task/Hello-world-Text/ColdFusion/hello-world-text.cfm
Normal file
|
|
@ -0,0 +1 @@
|
|||
<cfoutput>Goodbye, World!</cfoutput>
|
||||
1
Task/Hello-world-Text/Common-Lisp/hello-world-text.lisp
Normal file
1
Task/Hello-world-Text/Common-Lisp/hello-world-text.lisp
Normal file
|
|
@ -0,0 +1 @@
|
|||
(format t "Goodbye, World!~%")
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
MODULE Hello;
|
||||
IMPORT Out;
|
||||
|
||||
PROCEDURE Do*;
|
||||
BEGIN
|
||||
Out.String("Goodbye, World!"); Out.Ln
|
||||
END Do;
|
||||
END Hello.
|
||||
2
Task/Hello-world-Text/Crack/hello-world-text.crack
Normal file
2
Task/Hello-world-Text/Crack/hello-world-text.crack
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
import crack.io cout;
|
||||
cout `Goodbye, World!\n`;
|
||||
5
Task/Hello-world-Text/D/hello-world-text.d
Normal file
5
Task/Hello-world-Text/D/hello-world-text.d
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
import std.stdio;
|
||||
|
||||
void main() {
|
||||
writeln("Goodbye, World!");
|
||||
}
|
||||
1
Task/Hello-world-Text/DWScript/hello-world-text.dwscript
Normal file
1
Task/Hello-world-Text/DWScript/hello-world-text.dwscript
Normal file
|
|
@ -0,0 +1 @@
|
|||
PrintLn('Goodbye, World!');
|
||||
1
Task/Hello-world-Text/Dao/hello-world-text.dao
Normal file
1
Task/Hello-world-Text/Dao/hello-world-text.dao
Normal file
|
|
@ -0,0 +1 @@
|
|||
io.writeln( 'Goodbye, World!' )
|
||||
4
Task/Hello-world-Text/Dart/hello-world-text.dart
Normal file
4
Task/Hello-world-Text/Dart/hello-world-text.dart
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
main() {
|
||||
var bye = 'Goodbye, World!';
|
||||
print("$bye");
|
||||
}
|
||||
1
Task/Hello-world-Text/Deja-Vu/hello-world-text.djv
Normal file
1
Task/Hello-world-Text/Deja-Vu/hello-world-text.djv
Normal file
|
|
@ -0,0 +1 @@
|
|||
print "Goodbye, World!"
|
||||
5
Task/Hello-world-Text/Delphi/hello-world-text.delphi
Normal file
5
Task/Hello-world-Text/Delphi/hello-world-text.delphi
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
program ProjectGoodbye;
|
||||
{$APPTYPE CONSOLE}
|
||||
begin
|
||||
WriteLn('Goodbye, World!');
|
||||
end.
|
||||
1
Task/Hello-world-Text/Dylan.NET/hello-world-text-1.net
Normal file
1
Task/Hello-world-Text/Dylan.NET/hello-world-text-1.net
Normal file
|
|
@ -0,0 +1 @@
|
|||
Console::WriteLine("Goodbye, World!")
|
||||
16
Task/Hello-world-Text/Dylan.NET/hello-world-text-2.net
Normal file
16
Task/Hello-world-Text/Dylan.NET/hello-world-text-2.net
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
//compile using the new dylan.NET v, 11.2.8.2 or later
|
||||
//use mono to run the compiler
|
||||
#refstdasm mscorlib.dll
|
||||
|
||||
import System
|
||||
|
||||
assembly helloworld exe
|
||||
ver 1.2.0.0
|
||||
|
||||
class public auto ansi Module1
|
||||
|
||||
method public static void main()
|
||||
Console::WriteLine("Goodbye, World!")
|
||||
end method
|
||||
|
||||
end class
|
||||
3
Task/Hello-world-Text/Dylan/hello-world-text.dylan
Normal file
3
Task/Hello-world-Text/Dylan/hello-world-text.dylan
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
module: hello-world
|
||||
|
||||
format-out("%s\n", "Goodbye, World!");
|
||||
3
Task/Hello-world-Text/E/hello-world-text.e
Normal file
3
Task/Hello-world-Text/E/hello-world-text.e
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
println("Goodbye, World!")
|
||||
|
||||
stdout.println("Goodbye, World!")
|
||||
5
Task/Hello-world-Text/EGL/hello-world-text.egl
Normal file
5
Task/Hello-world-Text/EGL/hello-world-text.egl
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
program HelloWorld
|
||||
function main()
|
||||
SysLib.writeStdout("Goodbye, World!");
|
||||
end
|
||||
end
|
||||
1
Task/Hello-world-Text/Efene/hello-world-text-1.efene
Normal file
1
Task/Hello-world-Text/Efene/hello-world-text-1.efene
Normal file
|
|
@ -0,0 +1 @@
|
|||
io.format("Goodbye, World!~n")
|
||||
4
Task/Hello-world-Text/Efene/hello-world-text-2.efene
Normal file
4
Task/Hello-world-Text/Efene/hello-world-text-2.efene
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
@public
|
||||
run = fn () {
|
||||
io.format("Goodbye, World!~n")
|
||||
}
|
||||
10
Task/Hello-world-Text/Eiffel/hello-world-text.e
Normal file
10
Task/Hello-world-Text/Eiffel/hello-world-text.e
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
class
|
||||
HELLO_WORLD
|
||||
create
|
||||
make
|
||||
feature
|
||||
make
|
||||
do
|
||||
print ("Goodbye, World!%N")
|
||||
end
|
||||
end
|
||||
2
Task/Hello-world-Text/Ela/hello-world-text.ela
Normal file
2
Task/Hello-world-Text/Ela/hello-world-text.ela
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
open console
|
||||
writen "Goodbye, World!"
|
||||
4
Task/Hello-world-Text/Elena/hello-world-text-1.elena
Normal file
4
Task/Hello-world-Text/Elena/hello-world-text-1.elena
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
#symbol Program =
|
||||
[
|
||||
'program'output << "Goodbye, World!%n".
|
||||
].
|
||||
5
Task/Hello-world-Text/Elena/hello-world-text-2.elena
Normal file
5
Task/Hello-world-Text/Elena/hello-world-text-2.elena
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
sys'vm'routines'dummy "Goodbye, World!" %write &nil 'program'output &wrapbatch[4]
|
||||
%get &nil 'program'input &wrapbatch[2]
|
||||
&cast[2]
|
||||
&nil
|
||||
^eval
|
||||
1
Task/Hello-world-Text/Elisa/hello-world-text.elisa
Normal file
1
Task/Hello-world-Text/Elisa/hello-world-text.elisa
Normal file
|
|
@ -0,0 +1 @@
|
|||
"Goodbye, World!"?
|
||||
1
Task/Hello-world-Text/Emacs-Lisp/hello-world-text.l
Normal file
1
Task/Hello-world-Text/Emacs-Lisp/hello-world-text.l
Normal file
|
|
@ -0,0 +1 @@
|
|||
(insert "Goodbye, World!")
|
||||
1
Task/Hello-world-Text/Erlang/hello-world-text.erl
Normal file
1
Task/Hello-world-Text/Erlang/hello-world-text.erl
Normal file
|
|
@ -0,0 +1 @@
|
|||
io:format("Goodbye, World!~n").
|
||||
1
Task/Hello-world-Text/Euphoria/hello-world-text.euphoria
Normal file
1
Task/Hello-world-Text/Euphoria/hello-world-text.euphoria
Normal file
|
|
@ -0,0 +1 @@
|
|||
puts(1,"Goodbye, World!\n")
|
||||
2
Task/Hello-world-Text/FALSE/hello-world-text.false
Normal file
2
Task/Hello-world-Text/FALSE/hello-world-text.false
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
"Goodbye, World!
|
||||
"
|
||||
1
Task/Hello-world-Text/Factor/hello-world-text.factor
Normal file
1
Task/Hello-world-Text/Factor/hello-world-text.factor
Normal file
|
|
@ -0,0 +1 @@
|
|||
"Goodbye, World!" print
|
||||
1
Task/Hello-world-Text/Falcon/hello-world-text.falcon
Normal file
1
Task/Hello-world-Text/Falcon/hello-world-text.falcon
Normal file
|
|
@ -0,0 +1 @@
|
|||
> "Goodbye, World!"
|
||||
7
Task/Hello-world-Text/Fantom/hello-world-text.fantom
Normal file
7
Task/Hello-world-Text/Fantom/hello-world-text.fantom
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
class HelloText
|
||||
{
|
||||
public static Void main ()
|
||||
{
|
||||
echo ("Goodbye, World!")
|
||||
}
|
||||
}
|
||||
1
Task/Hello-world-Text/Fexl/hello-world-text.fexl
Normal file
1
Task/Hello-world-Text/Fexl/hello-world-text.fexl
Normal file
|
|
@ -0,0 +1 @@
|
|||
print "Goodbye, World!";nl;
|
||||
2
Task/Hello-world-Text/Fish/hello-world-text.fish
Normal file
2
Task/Hello-world-Text/Fish/hello-world-text.fish
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
!v"Goodbye, World!"r!
|
||||
>l?!;o
|
||||
1
Task/Hello-world-Text/Forth/hello-world-text-1.fth
Normal file
1
Task/Hello-world-Text/Forth/hello-world-text-1.fth
Normal file
|
|
@ -0,0 +1 @@
|
|||
." Goodbye, World!"
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue