2016 Update
This commit is contained in:
parent
948b86eafa
commit
dcf5d15da3
7965 changed files with 139854 additions and 31002 deletions
|
|
@ -1,3 +1,5 @@
|
|||
In this task, the goal is to create the simplest possible program that is still considered "correct."
|
||||
;Task:
|
||||
Create the simplest possible program that is still considered "correct."
|
||||
<br><br>
|
||||
|
||||
=Programming Languages=
|
||||
|
|
|
|||
1
Task/Empty-program/8086-Assembly/empty-program-1.8086
Normal file
1
Task/Empty-program/8086-Assembly/empty-program-1.8086
Normal file
|
|
@ -0,0 +1 @@
|
|||
end
|
||||
8
Task/Empty-program/8086-Assembly/empty-program-2.8086
Normal file
8
Task/Empty-program/8086-Assembly/empty-program-2.8086
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
segment .text
|
||||
global _start
|
||||
|
||||
_start:
|
||||
mov eax, 60
|
||||
xor edi, edi
|
||||
syscall
|
||||
end
|
||||
|
|
@ -1,3 +1 @@
|
|||
main () {
|
||||
return 0;
|
||||
}
|
||||
const main = 195;
|
||||
|
|
|
|||
3
Task/Empty-program/Elena/empty-program.elena
Normal file
3
Task/Empty-program/Elena/empty-program.elena
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
#symbol program =
|
||||
[
|
||||
].
|
||||
|
|
@ -0,0 +1 @@
|
|||
''
|
||||
|
|
@ -0,0 +1 @@
|
|||
.
|
||||
1
Task/Empty-program/Kotlin/empty-program.kotlin
Normal file
1
Task/Empty-program/Kotlin/empty-program.kotlin
Normal file
|
|
@ -0,0 +1 @@
|
|||
fun main(a: Array<String>) {}
|
||||
3
Task/Empty-program/MIPS-Assembly/empty-program.mips
Normal file
3
Task/Empty-program/MIPS-Assembly/empty-program.mips
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
.text
|
||||
main: li $v0, 10
|
||||
syscall
|
||||
|
|
@ -1 +0,0 @@
|
|||
use v6;
|
||||
|
|
@ -1 +1 @@
|
|||
v6;
|
||||
use v6;
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
6;
|
||||
v6;
|
||||
|
|
|
|||
|
|
@ -1,2 +0,0 @@
|
|||
#!/usr/bin/perl
|
||||
1;
|
||||
|
|
@ -1,2 +1 @@
|
|||
#!/usr/bin/perl
|
||||
exit;
|
||||
|
|
|
|||
1
Task/Empty-program/PowerShell/empty-program.psh
Normal file
1
Task/Empty-program/PowerShell/empty-program.psh
Normal file
|
|
@ -0,0 +1 @@
|
|||
&{}
|
||||
|
|
@ -1 +1 @@
|
|||
/*comment*/
|
||||
/*REXX*/
|
||||
|
|
|
|||
1
Task/Empty-program/Run-BASIC/empty-program.run
Normal file
1
Task/Empty-program/Run-BASIC/empty-program.run
Normal file
|
|
@ -0,0 +1 @@
|
|||
end ' actually a blank is ok
|
||||
Loading…
Add table
Add a link
Reference in a new issue