From 6e1eeeebfb453fa7c871869c19375ce60fbd7413 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Sat, 27 Jul 2019 16:01:55 -0700 Subject: 5485 - promote SubX to top-level --- html/x.mu.html | 68 ---------------------------------------------------------- 1 file changed, 68 deletions(-) delete mode 100644 html/x.mu.html (limited to 'html/x.mu.html') diff --git a/html/x.mu.html b/html/x.mu.html deleted file mode 100644 index 5cf8760d..00000000 --- a/html/x.mu.html +++ /dev/null @@ -1,68 +0,0 @@ - - - - -Mu - x.mu - - - - - - - - - - -https://github.com/akkartik/mu/blob/master/x.mu -
-1 # example program: add two numbers
-2 
-3 def main [
-4   11:num <- copy 1
-5   12:num <- copy 3
-6   13:num <- add 11:num, 12:num
-7   $dump-memory
-8 ]
-
- - - -- cgit 1.4.1-2-gfad0 id='n2' href='#n2'>2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29