shithub: mc

Download patch

ref: 0a48304b68829640d94f52931f866fc45d4ecb87
parent: b3b854e034d8822a8507aa3c199f77661b179218
author: Ori Bernstein <[email protected]>
date: Thu Aug 16 20:21:59 EDT 2012

Prettify stuff a bit.

--- a/rand.myr
+++ b/rand.myr
@@ -3,7 +3,7 @@
 use "types.use"
 use "alloc.use"
 /*
-   Translated by Ori Bernstein
+   Translated from C by Ori Bernstein
  */
 
 /* 
--- a/test.myr
+++ b/test.myr
@@ -65,4 +65,5 @@
 	for i = 0; i < 10; i++
 		std.put("r[%i] = %l\n", i, std.rand32(r) castto(int64))
 	;;
+	std.put("\n");
 }