about summary refs log tree commit diff stats
path: root/mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-05 21:17:24 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-05 21:17:24 -0700
commitb96af395b9af2ff9df94b3e82213171f30827c8d (patch)
tree17c8c12648ccc25625e2534ec8d74fbe8f1542cc /mu
parent2e3b597fe85b654e82b891c22d50754fa5a26156 (diff)
downloadmu-b96af395b9af2ff9df94b3e82213171f30827c8d.tar.gz
1276 - make C++ version the default
I've tried to update the Readme, but there are at least a couple of issues.
Diffstat (limited to 'mu')
-rwxr-xr-xmu27
1 files changed, 0 insertions, 27 deletions
diff --git a/mu b/mu
deleted file mode 100755
index 858438b8..00000000
--- a/mu
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/bash
-#
-# To run a program:
-#   $ mu [mu files]
-# To run a file of tests (in arc):
-#   $ mu test [arc files]
-# To start an interactive session:
-#   $ mu repl
-#
-# To mess with load levels and selectively run parts of the codebase, skip
-# this script and call load.arc directly.
-
-if [[ $1 == "test" ]]
-then
-  shift
-  ./anarki/arc load.arc "$@"  # test currently assumed to be arc files rather than mu files
-elif [[ $1 == "repl" ]]
-then
-  if [ "$(type rlwrap)" ]
-  then
-    rlwrap -C mu ./anarki/arc mu.arc
-  else
-    ./anarki/arc mu.arc
-  fi
-else
-  ./anarki/arc load.arc mu.arc -- "$@"  # mu files from args
-fi