about summary refs log tree commit diff stats
path: root/apps/raytracing/1.mu
diff options
context:
space:
mode:
Diffstat (limited to 'apps/raytracing/1.mu')
-rw-r--r--apps/raytracing/1.mu31
1 files changed, 0 insertions, 31 deletions
diff --git a/apps/raytracing/1.mu b/apps/raytracing/1.mu
deleted file mode 100644
index fbc76f1d..00000000
--- a/apps/raytracing/1.mu
+++ /dev/null
@@ -1,31 +0,0 @@
-# Listing 1 of https://raytracing.github.io/books/RayTracingInOneWeekend.html
-# (simplified)
-#
-# To run (on Linux):
-#   $ git clone https://github.com/akkartik/mu
-#   $ cd mu
-#   $ ./translate_mu apps/raytracing/1.mu
-#   $ ./a.elf > 1.ppm
-
-fn main -> _/ebx: int {
-  print-string 0, "P3\n256 256\n255\n"
-  var j/ecx: int <- copy 0xff
-  {
-    compare j, 0
-    break-if-<
-    var i/eax: int <- copy 0
-    {
-      compare i, 0xff
-      break-if->
-      print-int32-decimal 0, i
-      print-string 0, " "
-      print-int32-decimal 0, j
-      print-string 0, " 64\n"
-      i <- increment
-      loop
-    }
-    j <- decrement
-    loop
-  }
-  return 0
-}