My efforts to port http://www.youtube.com/watch?v=f6kdp27TYZs to Clojure.
func boring(msg string) {
for i := 0; ; i++ {
fmt.Println(msg, i)
time.Sleep(time.Second)
}
My efforts to port http://www.youtube.com/watch?v=f6kdp27TYZs to Clojure.
func boring(msg string) {
for i := 0; ; i++ {
fmt.Println(msg, i)
time.Sleep(time.Second)
}
#include <stdio.h> | |
#include <stdlib.h> | |
const int seed[2][2] = {{0, 2}, {3, 1}}; | |
int main(int argc, char *argv[]) | |
{ | |
unsigned x, y, m = 3; | |
if (argc == 2) | |
m = atoi(argv[1]); |