Another update from ingydotnet^djgoku

This commit is contained in:
Ingy döt Net 2015-11-18 06:14:39 +00:00
parent 91df62d461
commit 948b86eafa
7604 changed files with 108452 additions and 22726 deletions

View file

@ -0,0 +1,3 @@
begin
for i := 1 step 0 until 2 do write( "SPAM" )
end.

View file

@ -0,0 +1,11 @@
.global main
main:
loop:
ldr r0, =message
bl printf
b loop
message:
.asciz "SPAM\n"

View file

@ -0,0 +1,3 @@
$ loop:
$ write sys$output "SPAM"
$ goto loop

View file

@ -1,3 +1,7 @@
open console
open monad io
loop () = writen "SPAM" $ loop!
loop () = do
putStrLn "SPAM"
loop ()
loop () ::: IO

View file

@ -1,5 +1,10 @@
open console list
open monad io
loop () = writen "SPAM" :: (& loop!)
xs = "SPAM"::xs
take 10 <| loop! //prints SPAM only first 10 times
takeit 0 _ = do return ()
takeit num (x::xs) = do
putStrLn x
takeit (num - 1) xs
_ = takeit 10 xs ::: IO

View file

@ -0,0 +1,8 @@
defmodule Loops do
def infinite do
IO.puts "SPAM"
infinite
end
end
Loops.infinite

View file

@ -0,0 +1 @@
Stream.cycle(["SPAM"]) |> Enum.each(&IO.puts &1)

View file

@ -0,0 +1,3 @@
while true
println("SPAM")
end

View file

@ -0,0 +1,8 @@
#N canvas 426 88 450 300 10;
#X obj 17 75 print;
#X msg 17 55 SPAM;
#X obj 17 35 metro 1;
#X msg 17 15 1;
#X connect 1 0 0 0;
#X connect 2 0 1 0;
#X connect 3 0 2 0;

View file

@ -1,5 +1,5 @@
fn main() {
loop {
println!("SPAM");
}
loop {
println!("SPAM");
}
}

View file

@ -0,0 +1,3 @@
while %T
printf("SPAM\n")
end

View file

@ -0,0 +1 @@
['SPAM' printLine] loop