about summary refs log tree commit diff stats
path: root/apps/ex1.mu
diff options
context:
space:
mode:
Diffstat (limited to 'apps/ex1.mu')
-rw-r--r--apps/ex1.mu13
1 files changed, 0 insertions, 13 deletions
diff --git a/apps/ex1.mu b/apps/ex1.mu
deleted file mode 100644
index 41609fac..00000000
--- a/apps/ex1.mu
+++ /dev/null
@@ -1,13 +0,0 @@
-# First example: return the answer to the Ultimate Question of Life, the
-# Universe, and Everything.
-#
-# To run:
-#   $ ./translate_mu apps/ex1.mu
-#   $ ./a.elf
-# Expected result:
-#   $ echo $?
-#   42
-
-fn main -> _/ebx: int {
-  return 0x2a  # Mu requires hexadecimal
-}