Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
3
Task/Hello-world-Text/00-META.yaml
Normal file
3
Task/Hello-world-Text/00-META.yaml
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
from: http://rosettacode.org/wiki/Hello_world/Text
|
||||
note: Basic language learning
|
||||
15
Task/Hello-world-Text/00-TASK.txt
Normal file
15
Task/Hello-world-Text/00-TASK.txt
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{{selection|Short Circuit|Console Program Basics}}
|
||||
[[Category:Simple]]
|
||||
|
||||
;Task:
|
||||
Display the string '''Hello world!''' on a text console.
|
||||
|
||||
;Related tasks:
|
||||
* [[Hello world/Graphical]]
|
||||
* [[Hello world/Line Printer]]
|
||||
* [[Hello world/Newbie]]
|
||||
* [[Hello world/Newline omission]]
|
||||
* [[Hello world/Standard error]]
|
||||
* [[Hello world/Web server]]
|
||||
<br><br>
|
||||
|
||||
4
Task/Hello-world-Text/0815/hello-world-text.0815
Normal file
4
Task/Hello-world-Text/0815/hello-world-text.0815
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<:48:x<:65:=<:6C:$=$=$$~<:03:+
|
||||
$~<:ffffffffffffffb1:+$<:77:~$
|
||||
~<:fffffffffffff8:x+$~<:03:+$~
|
||||
<:06:x-$x<:0e:x-$=x<:43:x-$
|
||||
1
Task/Hello-world-Text/11l/hello-world-text.11l
Normal file
1
Task/Hello-world-Text/11l/hello-world-text.11l
Normal file
|
|
@ -0,0 +1 @@
|
|||
print(‘Hello world!’)
|
||||
10
Task/Hello-world-Text/360-Assembly/hello-world-text-1.360
Normal file
10
Task/Hello-world-Text/360-Assembly/hello-world-text-1.360
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
HELLO CSECT
|
||||
USING HELLO,15
|
||||
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'Hello world!' Text to be written to system console
|
||||
END
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
WTO 'Hello 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 Hello 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 ; C64 KERNEL ROM, output a character to current device.
|
||||
; use $fded for Apple 2, $ffe3 (ascii) or $ffee (raw) for BBC.
|
||||
.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 "Hello 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
|
||||
;=====================================================;
|
||||
; Hello world! for the Motorola 6800 ;
|
||||
; by barrym 2013-03-17 ;
|
||||
;-----------------------------------------------------;
|
||||
; Prints the message "Hello 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 "Hello world!",#13,#10,#0
|
||||
.en
|
||||
11
Task/Hello-world-Text/8080-Assembly/hello-world-text.8080
Normal file
11
Task/Hello-world-Text/8080-Assembly/hello-world-text.8080
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
; This is Hello World, written in 8080 assembly to run under CP/M
|
||||
; As you can see, it is similar to the 8086, and CP/M is very
|
||||
; similar to DOS in the way it is called.
|
||||
org 100h ; CP/M .COM entry point is 100h - like DOS
|
||||
mvi c,9 ; C holds the syscall, 9 = print string - like DOS
|
||||
lxi d,msg ; DE holds a pointer to the string
|
||||
jmp 5 ; CP/M calls are accessed through the jump at 05h
|
||||
; Normally you'd CALL it, but since you'd end the program by RETurning,
|
||||
; JMP saves a byte (if you've only got 64k of address space you want to
|
||||
; save bytes).
|
||||
msg: db 'Hello world!$'
|
||||
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 "Hello 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
|
||||
1
Task/Hello-world-Text/8th/hello-world-text.8th
Normal file
1
Task/Hello-world-Text/8th/hello-world-text.8th
Normal file
|
|
@ -0,0 +1 @@
|
|||
"Hello world!\n" . bye
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
.equ STDOUT, 1
|
||||
.equ SVC_WRITE, 64
|
||||
.equ SVC_EXIT, 93
|
||||
|
||||
.text
|
||||
.global _start
|
||||
|
||||
_start:
|
||||
stp x29, x30, [sp, -16]!
|
||||
mov x0, #STDOUT
|
||||
ldr x1, =msg
|
||||
mov x2, 13
|
||||
mov x8, #SVC_WRITE
|
||||
mov x29, sp
|
||||
svc #0 // write(stdout, msg, 13);
|
||||
ldp x29, x30, [sp], 16
|
||||
mov x0, #0
|
||||
mov x8, #SVC_EXIT
|
||||
svc #0 // exit(0);
|
||||
|
||||
msg: .ascii "Hello World!\n"
|
||||
.align 4
|
||||
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 'Hello 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 "Hello world!~%")
|
||||
4
Task/Hello-world-Text/ALGOL-60/hello-world-text.alg
Normal file
4
Task/Hello-world-Text/ALGOL-60/hello-world-text.alg
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
'BEGIN'
|
||||
OUTSTRING(1,'('Hello world!')');
|
||||
SYSACT(1,14,1)
|
||||
'END'
|
||||
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($"Hello world!"l$)
|
||||
)
|
||||
3
Task/Hello-world-Text/ALGOL-M/hello-world-text.alg
Normal file
3
Task/Hello-world-Text/ALGOL-M/hello-world-text.alg
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
BEGIN
|
||||
WRITE( "Hello world!" );
|
||||
END
|
||||
3
Task/Hello-world-Text/ALGOL-W/hello-world-text.alg
Normal file
3
Task/Hello-world-Text/ALGOL-W/hello-world-text.alg
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
begin
|
||||
write( "Hello world!" )
|
||||
end.
|
||||
1
Task/Hello-world-Text/ANT/hello-world-text.ant
Normal file
1
Task/Hello-world-Text/ANT/hello-world-text.ant
Normal file
|
|
@ -0,0 +1 @@
|
|||
echo["Hello, World!"]
|
||||
1
Task/Hello-world-Text/APL/hello-world-text.apl
Normal file
1
Task/Hello-world-Text/APL/hello-world-text.apl
Normal file
|
|
@ -0,0 +1 @@
|
|||
'Hello world!'
|
||||
12
Task/Hello-world-Text/ARM-Assembly/hello-world-text.arm
Normal file
12
Task/Hello-world-Text/ARM-Assembly/hello-world-text.arm
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
.global main
|
||||
|
||||
message:
|
||||
.asciz "Hello world!\n"
|
||||
.align 4
|
||||
|
||||
main:
|
||||
ldr r0, =message
|
||||
bl printf
|
||||
|
||||
mov r7, #1
|
||||
swi 0
|
||||
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 main0 () = print "Hello 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 "Hello 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 "Hello 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 "Hello 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 "Hello 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 @@
|
|||
//
|
||||
3
Task/Hello-world-Text/Action-/hello-world-text.action
Normal file
3
Task/Hello-world-Text/Action-/hello-world-text.action
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Proc Main()
|
||||
Print("Hello world!")
|
||||
Return
|
||||
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("Hello 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 ("Hello world!");
|
||||
end Main;
|
||||
12
Task/Hello-world-Text/Agda/hello-world-text.agda
Normal file
12
Task/Hello-world-Text/Agda/hello-world-text.agda
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
module HelloWorld where
|
||||
|
||||
open import Agda.Builtin.IO using (IO)
|
||||
open import Agda.Builtin.Unit renaming (⊤ to Unit)
|
||||
open import Agda.Builtin.String using (String)
|
||||
|
||||
postulate putStrLn : String -> IO Unit
|
||||
{-# FOREIGN GHC import qualified Data.Text as T #-}
|
||||
{-# COMPILE GHC putStrLn = putStrLn . T.unpack #-}
|
||||
|
||||
main : IO Unit
|
||||
main = putStrLn "Hello world!"
|
||||
1
Task/Hello-world-Text/Agena/hello-world-text.agena
Normal file
1
Task/Hello-world-Text/Agena/hello-world-text.agena
Normal file
|
|
@ -0,0 +1 @@
|
|||
print( "Hello world!" )
|
||||
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("Hello 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("Hello 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("Hello 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('Hello world!')
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
main:
|
||||
{"Hello world!\n"}print
|
||||
exit(0)
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
#include <hopper.h>
|
||||
main:
|
||||
exit("Hello world!\n")
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
main:
|
||||
{"Hello world!\n"}return
|
||||
|
|
@ -0,0 +1 @@
|
|||
system.println("Hello 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('Hello world!\n')
|
||||
ENDPROC
|
||||
1
Task/Hello-world-Text/AngelScript/hello-world-text.angel
Normal file
1
Task/Hello-world-Text/AngelScript/hello-world-text.angel
Normal file
|
|
@ -0,0 +1 @@
|
|||
void main() { print("Hello world\n"); }
|
||||
3
Task/Hello-world-Text/Anyways/hello-world-text.anyways
Normal file
3
Task/Hello-world-Text/Anyways/hello-world-text.anyways
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
There was a guy called Hello World
|
||||
"Ow!" it said.
|
||||
That's all folks!
|
||||
|
|
@ -0,0 +1 @@
|
|||
"Hello world!"
|
||||
|
|
@ -0,0 +1 @@
|
|||
log "Hello world!"
|
||||
|
|
@ -0,0 +1 @@
|
|||
PRINT "Hello world!"
|
||||
1
Task/Hello-world-Text/Apricot/hello-world-text.apricot
Normal file
1
Task/Hello-world-Text/Apricot/hello-world-text.apricot
Normal file
|
|
@ -0,0 +1 @@
|
|||
(puts "Hello world!")
|
||||
1
Task/Hello-world-Text/Arc/hello-world-text.arc
Normal file
1
Task/Hello-world-Text/Arc/hello-world-text.arc
Normal file
|
|
@ -0,0 +1 @@
|
|||
(prn "Hello 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 "Hello world!"
|
||||
3
Task/Hello-world-Text/ArnoldC/hello-world-text.arnoldc
Normal file
3
Task/Hello-world-Text/ArnoldC/hello-world-text.arnoldc
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
IT'S SHOWTIME
|
||||
TALK TO THE HAND "Hello world!"
|
||||
YOU HAVE BEEN TERMINATED
|
||||
1
Task/Hello-world-Text/Arturo/hello-world-text.arturo
Normal file
1
Task/Hello-world-Text/Arturo/hello-world-text.arturo
Normal file
|
|
@ -0,0 +1 @@
|
|||
print "Hello world!"
|
||||
|
|
@ -0,0 +1 @@
|
|||
.-$'Hello, World!'
|
||||
1
Task/Hello-world-Text/Astro/hello-world-text.astro
Normal file
1
Task/Hello-world-Text/Astro/hello-world-text.astro
Normal file
|
|
@ -0,0 +1 @@
|
|||
print "Hello world!"
|
||||
|
|
@ -0,0 +1 @@
|
|||
write('Hello 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 Hello 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("Hello world!" & @CRLF)
|
||||
1
Task/Hello-world-Text/AutoLISP/hello-world-text.l
Normal file
1
Task/Hello-world-Text/AutoLISP/hello-world-text.l
Normal file
|
|
@ -0,0 +1 @@
|
|||
(printc "Hello World!")
|
||||
1
Task/Hello-world-Text/Avail/hello-world-text.avail
Normal file
1
Task/Hello-world-Text/Avail/hello-world-text.avail
Normal file
|
|
@ -0,0 +1 @@
|
|||
Print: "Hello World!";
|
||||
1
Task/Hello-world-Text/Axe/hello-world-text.axe
Normal file
1
Task/Hello-world-Text/Axe/hello-world-text.axe
Normal file
|
|
@ -0,0 +1 @@
|
|||
Disp "Hello world!",i
|
||||
5
Task/Hello-world-Text/B/hello-world-text.b
Normal file
5
Task/Hello-world-Text/B/hello-world-text.b
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
main()
|
||||
{
|
||||
putstr("Hello world!*n");
|
||||
return(0);
|
||||
}
|
||||
1
Task/Hello-world-Text/B4X/hello-world-text.b4x
Normal file
1
Task/Hello-world-Text/B4X/hello-world-text.b4x
Normal file
|
|
@ -0,0 +1 @@
|
|||
Log("Hello world!")
|
||||
1
Task/Hello-world-Text/BASIC/hello-world-text-1.basic
Normal file
1
Task/Hello-world-Text/BASIC/hello-world-text-1.basic
Normal file
|
|
@ -0,0 +1 @@
|
|||
10 print "Hello world!"
|
||||
1
Task/Hello-world-Text/BASIC/hello-world-text-2.basic
Normal file
1
Task/Hello-world-Text/BASIC/hello-world-text-2.basic
Normal file
|
|
@ -0,0 +1 @@
|
|||
PRINT "Hello world!"
|
||||
1
Task/Hello-world-Text/BASIC256/hello-world-text.basic
Normal file
1
Task/Hello-world-Text/BASIC256/hello-world-text.basic
Normal file
|
|
@ -0,0 +1 @@
|
|||
PRINT "Hello world!"
|
||||
1
Task/Hello-world-Text/BBC-BASIC/hello-world-text.basic
Normal file
1
Task/Hello-world-Text/BBC-BASIC/hello-world-text.basic
Normal file
|
|
@ -0,0 +1 @@
|
|||
PRINT "Hello 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("Hello world!")
|
||||
RESULTIS 0
|
||||
}
|
||||
1
Task/Hello-world-Text/BML/hello-world-text.bml
Normal file
1
Task/Hello-world-Text/BML/hello-world-text.bml
Normal file
|
|
@ -0,0 +1 @@
|
|||
display "Hello world!"
|
||||
1
Task/Hello-world-Text/BQN/hello-world-text.bqn
Normal file
1
Task/Hello-world-Text/BQN/hello-world-text.bqn
Normal file
|
|
@ -0,0 +1 @@
|
|||
•Out "Hello world!"
|
||||
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 @@
|
|||
"Hello world!" <<
|
||||
3
Task/Hello-world-Text/Bait/hello-world-text.bait
Normal file
3
Task/Hello-world-Text/Bait/hello-world-text.bait
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
fun main() {
|
||||
println('Hello World!')
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
import ballerina/io;
|
||||
|
||||
public function main() {
|
||||
io:println("Hello 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 Hello 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 Hello world!^^!
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
const hello = "Hello world!\n"
|
||||
|
||||
print(hello)
|
||||
2
Task/Hello-world-Text/Bc/hello-world-text.bc
Normal file
2
Task/Hello-world-Text/Bc/hello-world-text.bc
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
"Hello world!
|
||||
"
|
||||
10
Task/Hello-world-Text/Beef/hello-world-text.beef
Normal file
10
Task/Hello-world-Text/Beef/hello-world-text.beef
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
Using System;
|
||||
namespace HelloWorld {
|
||||
class Program
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
Console.Writeln("Hello World!");
|
||||
}
|
||||
}
|
||||
}
|
||||
1
Task/Hello-world-Text/Beeswax/hello-world-text-1.beeswax
Normal file
1
Task/Hello-world-Text/Beeswax/hello-world-text-1.beeswax
Normal file
|
|
@ -0,0 +1 @@
|
|||
*`Hello, World!
|
||||
7
Task/Hello-world-Text/Beeswax/hello-world-text-2.beeswax
Normal file
7
Task/Hello-world-Text/Beeswax/hello-world-text-2.beeswax
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
>`ld!
|
||||
`
|
||||
r
|
||||
o
|
||||
W
|
||||
`
|
||||
b` ,olleH`_
|
||||
7
Task/Hello-world-Text/Beeswax/hello-world-text-3.beeswax
Normal file
7
Task/Hello-world-Text/Beeswax/hello-world-text-3.beeswax
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
r l
|
||||
l o
|
||||
``
|
||||
ol`*`,d!
|
||||
``
|
||||
e H
|
||||
W
|
||||
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 @@
|
|||
52*"!dlroW ,olleH">:#,_@
|
||||
|
|
@ -0,0 +1 @@
|
|||
Hello world!
|
||||
5
Task/Hello-world-Text/Bird/hello-world-text.bird
Normal file
5
Task/Hello-world-Text/Bird/hello-world-text.bird
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
use Console
|
||||
|
||||
define Main
|
||||
Console.Println "Hello world"
|
||||
end
|
||||
1
Task/Hello-world-Text/Blade/hello-world-text-1.blade
Normal file
1
Task/Hello-world-Text/Blade/hello-world-text-1.blade
Normal file
|
|
@ -0,0 +1 @@
|
|||
echo 'Hello world!'
|
||||
1
Task/Hello-world-Text/Blade/hello-world-text-2.blade
Normal file
1
Task/Hello-world-Text/Blade/hello-world-text-2.blade
Normal file
|
|
@ -0,0 +1 @@
|
|||
print('Hello world!')
|
||||
2
Task/Hello-world-Text/Blade/hello-world-text-3.blade
Normal file
2
Task/Hello-world-Text/Blade/hello-world-text-3.blade
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
import io
|
||||
io.stdout.write('Hello world!')
|
||||
5
Task/Hello-world-Text/Blast/hello-world-text-1.blast
Normal file
5
Task/Hello-world-Text/Blast/hello-world-text-1.blast
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# This will display a goodbye message on the terminal screen
|
||||
.begin
|
||||
display "Hello world!"
|
||||
return
|
||||
# This is the end of the script.
|
||||
1
Task/Hello-world-Text/Blast/hello-world-text-2.blast
Normal file
1
Task/Hello-world-Text/Blast/hello-world-text-2.blast
Normal file
|
|
@ -0,0 +1 @@
|
|||
print "Hello world!"
|
||||
15
Task/Hello-world-Text/Blue/hello-world-text.blue
Normal file
15
Task/Hello-world-Text/Blue/hello-world-text.blue
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
global _start
|
||||
|
||||
: syscall ( num:eax -- result:eax ) syscall ;
|
||||
|
||||
: exit ( status:edi -- noret ) 60 syscall ;
|
||||
: bye ( -- noret ) 0 exit ;
|
||||
|
||||
1 const stdout
|
||||
|
||||
: write ( buf:esi len:edx fd:edi -- ) 1 syscall drop ;
|
||||
: print ( buf len -- ) stdout write ;
|
||||
|
||||
: greet ( -- ) s" Hello world!\n" print ;
|
||||
|
||||
: _start ( -- noret ) greet bye ;
|
||||
1
Task/Hello-world-Text/Blz/hello-world-text.blz
Normal file
1
Task/Hello-world-Text/Blz/hello-world-text.blz
Normal file
|
|
@ -0,0 +1 @@
|
|||
print("Hello world!")
|
||||
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 "Hello world!"
|
||||
1
Task/Hello-world-Text/BootBASIC/hello-world-text.basic
Normal file
1
Task/Hello-world-Text/BootBASIC/hello-world-text.basic
Normal file
|
|
@ -0,0 +1 @@
|
|||
10 print "Hello 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("Hello 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$"Hello 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 "Hello 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 Hello 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