Time for an 2014 update…
This commit is contained in:
parent
372c577f83
commit
09687c4926
2520 changed files with 34227 additions and 7318 deletions
|
|
@ -1 +1 @@
|
|||
print "Goodbye, World!"
|
||||
!print "Goodbye, World!"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
sys'vm'routines'dummy "Goodbye, World!" %write &nil 'program'output &wrapbatch[4]
|
||||
%get &nil 'program'input &wrapbatch[2]
|
||||
&cast[2]
|
||||
&nil
|
||||
^eval
|
||||
[[
|
||||
#config vm_console #start;
|
||||
#define start ::= "?" system'console .eval&writeLine($literal);
|
||||
]]
|
||||
|
||||
? "Hello World"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
print("Goodbye, World!")
|
||||
println("Goodbye, World!")
|
||||
|
|
|
|||
7
Task/Hello-world-Text/LLVM/hello-world-text.llvm
Normal file
7
Task/Hello-world-Text/LLVM/hello-world-text.llvm
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
@str = internal constant [14 x i8] c"Hello, world!\00"
|
||||
declare i32 @puts(i8*)
|
||||
define i32 @main()
|
||||
{
|
||||
call i32 @puts( i8* getelementptr ([14 x i8]* @str, i32 0,i32 0))
|
||||
ret i32 0
|
||||
}
|
||||
1
Task/Hello-world-Text/Neko/hello-world-text.neko
Normal file
1
Task/Hello-world-Text/Neko/hello-world-text.neko
Normal file
|
|
@ -0,0 +1 @@
|
|||
$print("Hello, World!");
|
||||
1
Task/Hello-world-Text/Scilab/hello-world-text.scilab
Normal file
1
Task/Hello-world-Text/Scilab/hello-world-text.scilab
Normal file
|
|
@ -0,0 +1 @@
|
|||
disp("Goodbye, World!");
|
||||
Loading…
Add table
Add a link
Reference in a new issue