tisp

tiny lisp
git clone git://edryd.org/tisp
Log | Files | Refs | README | LICENSE

tsp (166B)


      1 #!/bin/sh
      2 
      3 # if rlwrap is not installed, run without it
      4 command -v rlwrap >/dev/null 2>&1 || {
      5   ./tisp $@
      6   exit $?
      7 }
      8 rlwrap -ncr -M ".tsp" -pWhite -q"\"" ./tisp $@