Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
6
Task/Empty-program/00-META.yaml
Normal file
6
Task/Empty-program/00-META.yaml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
category:
|
||||
- Initialization
|
||||
- Simple
|
||||
from: http://rosettacode.org/wiki/Empty_program
|
||||
note: Basic language learning
|
||||
4
Task/Empty-program/00-TASK.txt
Normal file
4
Task/Empty-program/00-TASK.txt
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
;Task:
|
||||
Create the simplest possible program that is still considered "correct."
|
||||
<br><br>
|
||||
|
||||
2
Task/Empty-program/360-Assembly/empty-program.360
Normal file
2
Task/Empty-program/360-Assembly/empty-program.360
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
BR 14
|
||||
END
|
||||
3
Task/Empty-program/6502-Assembly/empty-program-1.6502
Normal file
3
Task/Empty-program/6502-Assembly/empty-program-1.6502
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
org $0801 ;start assembling at this address
|
||||
db $0E,$08,$0A,$00,$9E,$20,$28,$32,$30,$36,$34,$29,$00,$00,$00 ;required init code
|
||||
rts ;return to basic
|
||||
15
Task/Empty-program/6502-Assembly/empty-program-2.6502
Normal file
15
Task/Empty-program/6502-Assembly/empty-program-2.6502
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
.org $8000 ;usually $8000 but it depends on the mapper.
|
||||
RESET: ;execution starts here
|
||||
JMP RESET
|
||||
|
||||
|
||||
NMI: ;NMI can't happen if the screen is off. No need for RTI
|
||||
|
||||
IRQ: ;this will never occur without a CLI command.
|
||||
|
||||
.org $FFFA
|
||||
;all 6502 based hardware uses this section of memory to hold the addresses of interrupt routines
|
||||
;as well as the entry point.
|
||||
dw NMI ;FFFA-FFFB
|
||||
dw RESET ;FFFC-FFFD ;this has to be defined or else the program counter will jump to an unknown location
|
||||
dw IRQ ;FFFE-FFFF
|
||||
3
Task/Empty-program/68000-Assembly/empty-program.68000
Normal file
3
Task/Empty-program/68000-Assembly/empty-program.68000
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
forever:
|
||||
MOVE.B D0,$300001
|
||||
JMP forever
|
||||
2
Task/Empty-program/8051-Assembly/empty-program.8051
Normal file
2
Task/Empty-program/8051-Assembly/empty-program.8051
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
ORG RESET
|
||||
jmp $
|
||||
6
Task/Empty-program/8086-Assembly/empty-program-1.8086
Normal file
6
Task/Empty-program/8086-Assembly/empty-program-1.8086
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
main segment
|
||||
start:
|
||||
jmp start ;2 bytes
|
||||
padding byte 508 dup (90h)
|
||||
bootcode byte 55h,0AAh
|
||||
main ends
|
||||
7
Task/Empty-program/8086-Assembly/empty-program-2.8086
Normal file
7
Task/Empty-program/8086-Assembly/empty-program-2.8086
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
.model small ;.exe file
|
||||
.stack 1024 ;this value doesn't matter, I chose this arbitrarily
|
||||
.data
|
||||
;not needed in an empty program
|
||||
.code
|
||||
mov ax,4C00h
|
||||
int 21h ;exit this program and return to MS-DOS
|
||||
1
Task/Empty-program/8086-Assembly/empty-program-3.8086
Normal file
1
Task/Empty-program/8086-Assembly/empty-program-3.8086
Normal file
|
|
@ -0,0 +1 @@
|
|||
end
|
||||
8
Task/Empty-program/8086-Assembly/empty-program-4.8086
Normal file
8
Task/Empty-program/8086-Assembly/empty-program-4.8086
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
segment .text
|
||||
global _start
|
||||
|
||||
_start:
|
||||
mov eax, 60
|
||||
xor edi, edi
|
||||
syscall
|
||||
end
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
.text
|
||||
.global _start
|
||||
|
||||
_start:
|
||||
mov x0, #0
|
||||
mov x8, #93
|
||||
svc #0
|
||||
1
Task/Empty-program/ABAP/empty-program.abap
Normal file
1
Task/Empty-program/ABAP/empty-program.abap
Normal file
|
|
@ -0,0 +1 @@
|
|||
report z_empty_program.
|
||||
1
Task/Empty-program/ALGOL-60/empty-program.alg
Normal file
1
Task/Empty-program/ALGOL-60/empty-program.alg
Normal file
|
|
@ -0,0 +1 @@
|
|||
'BEGIN' 'END'
|
||||
1
Task/Empty-program/ALGOL-68/empty-program-1.alg
Normal file
1
Task/Empty-program/ALGOL-68/empty-program-1.alg
Normal file
|
|
@ -0,0 +1 @@
|
|||
~
|
||||
1
Task/Empty-program/ALGOL-68/empty-program-2.alg
Normal file
1
Task/Empty-program/ALGOL-68/empty-program-2.alg
Normal file
|
|
@ -0,0 +1 @@
|
|||
SKIP
|
||||
1
Task/Empty-program/ALGOL-W/empty-program.alg
Normal file
1
Task/Empty-program/ALGOL-W/empty-program.alg
Normal file
|
|
@ -0,0 +1 @@
|
|||
.
|
||||
6
Task/Empty-program/ARM-Assembly/empty-program-1.arm
Normal file
6
Task/Empty-program/ARM-Assembly/empty-program-1.arm
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
.text
|
||||
.global _start
|
||||
_start:
|
||||
mov r0, #0
|
||||
mov r7, #1
|
||||
svc #0
|
||||
2
Task/Empty-program/ARM-Assembly/empty-program-2.arm
Normal file
2
Task/Empty-program/ARM-Assembly/empty-program-2.arm
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
ProgramStart:
|
||||
b ProgramStart ;don't do this on a real game boy, you'll drain the batteries faster than usual.
|
||||
1
Task/Empty-program/AWK/empty-program-1.awk
Normal file
1
Task/Empty-program/AWK/empty-program-1.awk
Normal file
|
|
@ -0,0 +1 @@
|
|||
1
|
||||
1
Task/Empty-program/AWK/empty-program-2.awk
Normal file
1
Task/Empty-program/AWK/empty-program-2.awk
Normal file
|
|
@ -0,0 +1 @@
|
|||
// {print}
|
||||
0
Task/Empty-program/Action-/empty-program.action
Normal file
0
Task/Empty-program/Action-/empty-program.action
Normal file
4
Task/Empty-program/Ada/empty-program.ada
Normal file
4
Task/Empty-program/Ada/empty-program.ada
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
procedure Empty is
|
||||
begin
|
||||
null;
|
||||
end;
|
||||
0
Task/Empty-program/Agena/empty-program.agena
Normal file
0
Task/Empty-program/Agena/empty-program.agena
Normal file
0
Task/Empty-program/Aime/empty-program.aime
Normal file
0
Task/Empty-program/Aime/empty-program.aime
Normal file
2
Task/Empty-program/AmigaE/empty-program.amiga
Normal file
2
Task/Empty-program/AmigaE/empty-program.amiga
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
PROC main()
|
||||
ENDPROC
|
||||
1
Task/Empty-program/AppleScript/empty-program.applescript
Normal file
1
Task/Empty-program/AppleScript/empty-program.applescript
Normal file
|
|
@ -0,0 +1 @@
|
|||
return
|
||||
0
Task/Empty-program/Applesoft-BASIC/empty-program.basic
Normal file
0
Task/Empty-program/Applesoft-BASIC/empty-program.basic
Normal file
0
Task/Empty-program/Argile/empty-program.argile
Normal file
0
Task/Empty-program/Argile/empty-program.argile
Normal file
2
Task/Empty-program/ArnoldC/empty-program.arnoldc
Normal file
2
Task/Empty-program/ArnoldC/empty-program.arnoldc
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
IT'S SHOWTIME
|
||||
YOU HAVE BEEN TERMINATED
|
||||
0
Task/Empty-program/Arturo/empty-program.arturo
Normal file
0
Task/Empty-program/Arturo/empty-program.arturo
Normal file
0
Task/Empty-program/Asymptote/empty-program.asymptote
Normal file
0
Task/Empty-program/Asymptote/empty-program.asymptote
Normal file
1
Task/Empty-program/AutoHotkey/empty-program.ahk
Normal file
1
Task/Empty-program/AutoHotkey/empty-program.ahk
Normal file
|
|
@ -0,0 +1 @@
|
|||
#Persistent
|
||||
1
Task/Empty-program/AutoIt/empty-program.autoit
Normal file
1
Task/Empty-program/AutoIt/empty-program.autoit
Normal file
|
|
@ -0,0 +1 @@
|
|||
;nothing
|
||||
2
Task/Empty-program/Avail/empty-program-1.avail
Normal file
2
Task/Empty-program/Avail/empty-program-1.avail
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Module "a"
|
||||
Body
|
||||
1
Task/Empty-program/Avail/empty-program-2.avail
Normal file
1
Task/Empty-program/Avail/empty-program-2.avail
Normal file
|
|
@ -0,0 +1 @@
|
|||
Module"a"Body
|
||||
1
Task/Empty-program/Avail/empty-program-3.avail
Normal file
1
Task/Empty-program/Avail/empty-program-3.avail
Normal file
|
|
@ -0,0 +1 @@
|
|||
Module"a"Uses"Avail"Body Print:"!";
|
||||
4
Task/Empty-program/Avail/empty-program-4.avail
Normal file
4
Task/Empty-program/Avail/empty-program-4.avail
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
Module "a"
|
||||
Uses "Avail"
|
||||
Body
|
||||
Print:"!";
|
||||
2
Task/Empty-program/Axe/empty-program.axe
Normal file
2
Task/Empty-program/Axe/empty-program.axe
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
:.PRGMNAME
|
||||
:
|
||||
0
Task/Empty-program/BASIC/empty-program-1.basic
Normal file
0
Task/Empty-program/BASIC/empty-program-1.basic
Normal file
1
Task/Empty-program/BASIC/empty-program-2.basic
Normal file
1
Task/Empty-program/BASIC/empty-program-2.basic
Normal file
|
|
@ -0,0 +1 @@
|
|||
RUN
|
||||
0
Task/Empty-program/BASIC256/empty-program.basic
Normal file
0
Task/Empty-program/BASIC256/empty-program.basic
Normal file
0
Task/Empty-program/BBC-BASIC/empty-program.basic
Normal file
0
Task/Empty-program/BBC-BASIC/empty-program.basic
Normal file
1
Task/Empty-program/BQN/empty-program.bqn
Normal file
1
Task/Empty-program/BQN/empty-program.bqn
Normal file
|
|
@ -0,0 +1 @@
|
|||
∞
|
||||
0
Task/Empty-program/BaCon/empty-program.bacon
Normal file
0
Task/Empty-program/BaCon/empty-program.bacon
Normal file
0
Task/Empty-program/Batch-File/empty-program-1.bat
Normal file
0
Task/Empty-program/Batch-File/empty-program-1.bat
Normal file
1
Task/Empty-program/Batch-File/empty-program-2.bat
Normal file
1
Task/Empty-program/Batch-File/empty-program-2.bat
Normal file
|
|
@ -0,0 +1 @@
|
|||
:
|
||||
7
Task/Empty-program/Beef/empty-program.beef
Normal file
7
Task/Empty-program/Beef/empty-program.beef
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
using System;
|
||||
class Program
|
||||
{
|
||||
public static void Main()
|
||||
{
|
||||
}
|
||||
}
|
||||
1
Task/Empty-program/Beeswax/empty-program-1.beeswax
Normal file
1
Task/Empty-program/Beeswax/empty-program-1.beeswax
Normal file
|
|
@ -0,0 +1 @@
|
|||
*
|
||||
1
Task/Empty-program/Beeswax/empty-program-2.beeswax
Normal file
1
Task/Empty-program/Beeswax/empty-program-2.beeswax
Normal file
|
|
@ -0,0 +1 @@
|
|||
\
|
||||
1
Task/Empty-program/Beeswax/empty-program-3.beeswax
Normal file
1
Task/Empty-program/Beeswax/empty-program-3.beeswax
Normal file
|
|
@ -0,0 +1 @@
|
|||
_
|
||||
1
Task/Empty-program/Beeswax/empty-program-4.beeswax
Normal file
1
Task/Empty-program/Beeswax/empty-program-4.beeswax
Normal file
|
|
@ -0,0 +1 @@
|
|||
/
|
||||
0
Task/Empty-program/BootBASIC/empty-program.basic
Normal file
0
Task/Empty-program/BootBASIC/empty-program.basic
Normal file
2
Task/Empty-program/Bracmat/empty-program-1.bracmat
Normal file
2
Task/Empty-program/Bracmat/empty-program-1.bracmat
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
touch empty
|
||||
bracmat 'get$empty'
|
||||
2
Task/Empty-program/Bracmat/empty-program-2.bracmat
Normal file
2
Task/Empty-program/Bracmat/empty-program-2.bracmat
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
touch empty
|
||||
bracmat get$empty
|
||||
1
Task/Empty-program/Bracmat/empty-program-3.bracmat
Normal file
1
Task/Empty-program/Bracmat/empty-program-3.bracmat
Normal file
|
|
@ -0,0 +1 @@
|
|||
bracmat ''
|
||||
1
Task/Empty-program/Bracmat/empty-program-4.bracmat
Normal file
1
Task/Empty-program/Bracmat/empty-program-4.bracmat
Normal file
|
|
@ -0,0 +1 @@
|
|||
bracmat ""
|
||||
1
Task/Empty-program/Brlcad/empty-program.brlcad
Normal file
1
Task/Empty-program/Brlcad/empty-program.brlcad
Normal file
|
|
@ -0,0 +1 @@
|
|||
opendb empty.g y
|
||||
1
Task/Empty-program/C++/empty-program.cpp
Normal file
1
Task/Empty-program/C++/empty-program.cpp
Normal file
|
|
@ -0,0 +1 @@
|
|||
int main(){}
|
||||
4
Task/Empty-program/C/empty-program-1.c
Normal file
4
Task/Empty-program/C/empty-program-1.c
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
main()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
1
Task/Empty-program/C/empty-program-2.c
Normal file
1
Task/Empty-program/C/empty-program-2.c
Normal file
|
|
@ -0,0 +1 @@
|
|||
int main() { }
|
||||
1
Task/Empty-program/C/empty-program-3.c
Normal file
1
Task/Empty-program/C/empty-program-3.c
Normal file
|
|
@ -0,0 +1 @@
|
|||
const main = 195;
|
||||
2
Task/Empty-program/CLU/empty-program.clu
Normal file
2
Task/Empty-program/CLU/empty-program.clu
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
start_up = proc ()
|
||||
end start_up
|
||||
0
Task/Empty-program/COBOL/empty-program.cobol
Normal file
0
Task/Empty-program/COBOL/empty-program.cobol
Normal file
3
Task/Empty-program/Clean/empty-program.clean
Normal file
3
Task/Empty-program/Clean/empty-program.clean
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
module Empty
|
||||
|
||||
Start world = world
|
||||
0
Task/Empty-program/CoffeeScript/empty-program.coffee
Normal file
0
Task/Empty-program/CoffeeScript/empty-program.coffee
Normal file
1
Task/Empty-program/Common-Lisp/empty-program-1.lisp
Normal file
1
Task/Empty-program/Common-Lisp/empty-program-1.lisp
Normal file
|
|
@ -0,0 +1 @@
|
|||
()
|
||||
1
Task/Empty-program/Common-Lisp/empty-program-2.lisp
Normal file
1
Task/Empty-program/Common-Lisp/empty-program-2.lisp
Normal file
|
|
@ -0,0 +1 @@
|
|||
.
|
||||
2
Task/Empty-program/Component-Pascal/empty-program.pas
Normal file
2
Task/Empty-program/Component-Pascal/empty-program.pas
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
MODULE Main;
|
||||
END Main.
|
||||
|
|
@ -0,0 +1 @@
|
|||
STP
|
||||
0
Task/Empty-program/Crystal/empty-program.crystal
Normal file
0
Task/Empty-program/Crystal/empty-program.crystal
Normal file
1
Task/Empty-program/D/empty-program.d
Normal file
1
Task/Empty-program/D/empty-program.d
Normal file
|
|
@ -0,0 +1 @@
|
|||
void main() {}
|
||||
1
Task/Empty-program/Dart/empty-program.dart
Normal file
1
Task/Empty-program/Dart/empty-program.dart
Normal file
|
|
@ -0,0 +1 @@
|
|||
main() {}
|
||||
1
Task/Empty-program/Dyalect/empty-program.dyalect
Normal file
1
Task/Empty-program/Dyalect/empty-program.dyalect
Normal file
|
|
@ -0,0 +1 @@
|
|||
{}
|
||||
1
Task/Empty-program/E/empty-program.e
Normal file
1
Task/Empty-program/E/empty-program.e
Normal file
|
|
@ -0,0 +1 @@
|
|||
null
|
||||
7
Task/Empty-program/EC/empty-program.ec
Normal file
7
Task/Empty-program/EC/empty-program.ec
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
class EmptyApp : Application
|
||||
{
|
||||
void Main()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
4
Task/Empty-program/EDSAC-order-code/empty-program.edsac
Normal file
4
Task/Empty-program/EDSAC-order-code/empty-program.edsac
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
T64K [ set load point ]
|
||||
GK [ set base address ]
|
||||
ZF [ stop ]
|
||||
EZPF [ begin at load point ]
|
||||
6
Task/Empty-program/EGL/empty-program.egl
Normal file
6
Task/Empty-program/EGL/empty-program.egl
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
package programs;
|
||||
|
||||
program Empty_program type BasicProgram {}
|
||||
function main()
|
||||
end
|
||||
end
|
||||
3
Task/Empty-program/ERRE/empty-program.erre
Normal file
3
Task/Empty-program/ERRE/empty-program.erre
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
PROGRAM EMPTY
|
||||
BEGIN
|
||||
END PROGRAM
|
||||
6
Task/Empty-program/ESQL/empty-program.esql
Normal file
6
Task/Empty-program/ESQL/empty-program.esql
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
CREATE COMPUTE MODULE ESQL_Compute
|
||||
CREATE FUNCTION Main() RETURNS BOOLEAN
|
||||
BEGIN
|
||||
RETURN TRUE;
|
||||
END;
|
||||
END MODULE;
|
||||
0
Task/Empty-program/EchoLisp/empty-program.l
Normal file
0
Task/Empty-program/EchoLisp/empty-program.l
Normal file
4
Task/Empty-program/Ecstasy/empty-program.ecstasy
Normal file
4
Task/Empty-program/Ecstasy/empty-program.ecstasy
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
module EmptyProgram {
|
||||
void run() {
|
||||
}
|
||||
}
|
||||
0
Task/Empty-program/Egel/empty-program.egel
Normal file
0
Task/Empty-program/Egel/empty-program.egel
Normal file
12
Task/Empty-program/Eiffel/empty-program.e
Normal file
12
Task/Empty-program/Eiffel/empty-program.e
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
class
|
||||
ROOT
|
||||
|
||||
create
|
||||
make
|
||||
|
||||
feature
|
||||
make
|
||||
do
|
||||
|
||||
end
|
||||
end
|
||||
3
Task/Empty-program/Elena/empty-program.elena
Normal file
3
Task/Empty-program/Elena/empty-program.elena
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
public program()
|
||||
{
|
||||
}
|
||||
0
Task/Empty-program/Elixir/empty-program.elixir
Normal file
0
Task/Empty-program/Elixir/empty-program.elixir
Normal file
4
Task/Empty-program/Elm/empty-program.elm
Normal file
4
Task/Empty-program/Elm/empty-program.elm
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
--Language prints the text in " "
|
||||
import Html
|
||||
main =
|
||||
Html.text"empty"
|
||||
1
Task/Empty-program/Erlang/empty-program-1.erl
Normal file
1
Task/Empty-program/Erlang/empty-program-1.erl
Normal file
|
|
@ -0,0 +1 @@
|
|||
-module(empty).
|
||||
1
Task/Empty-program/Erlang/empty-program-2.erl
Normal file
1
Task/Empty-program/Erlang/empty-program-2.erl
Normal file
|
|
@ -0,0 +1 @@
|
|||
main(_) -> 1.
|
||||
0
Task/Empty-program/Euphoria/empty-program.euphoria
Normal file
0
Task/Empty-program/Euphoria/empty-program.euphoria
Normal file
0
Task/Empty-program/F-Sharp/empty-program-1.fs
Normal file
0
Task/Empty-program/F-Sharp/empty-program-1.fs
Normal file
2
Task/Empty-program/F-Sharp/empty-program-2.fs
Normal file
2
Task/Empty-program/F-Sharp/empty-program-2.fs
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
[<EntryPoint>]
|
||||
let main args = 0
|
||||
0
Task/Empty-program/FALSE/empty-program.false
Normal file
0
Task/Empty-program/FALSE/empty-program.false
Normal file
0
Task/Empty-program/Factor/empty-program-1.factor
Normal file
0
Task/Empty-program/Factor/empty-program-1.factor
Normal file
3
Task/Empty-program/Factor/empty-program-2.factor
Normal file
3
Task/Empty-program/Factor/empty-program-2.factor
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
IN: rosetta.empty
|
||||
: main ( -- ) ;
|
||||
MAIN: main
|
||||
4
Task/Empty-program/Fantom/empty-program.fantom
Normal file
4
Task/Empty-program/Fantom/empty-program.fantom
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
class Main
|
||||
{
|
||||
public static Void main () {}
|
||||
}
|
||||
1
Task/Empty-program/Fermat/empty-program.fermat
Normal file
1
Task/Empty-program/Fermat/empty-program.fermat
Normal file
|
|
@ -0,0 +1 @@
|
|||
;
|
||||
0
Task/Empty-program/Fish/empty-program-1.fish
Normal file
0
Task/Empty-program/Fish/empty-program-1.fish
Normal file
1
Task/Empty-program/Fish/empty-program-2.fish
Normal file
1
Task/Empty-program/Fish/empty-program-2.fish
Normal file
|
|
@ -0,0 +1 @@
|
|||
;
|
||||
0
Task/Empty-program/Forth/empty-program-1.fth
Normal file
0
Task/Empty-program/Forth/empty-program-1.fth
Normal file
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