linux build
This commit is contained in:
parent
d60ef9b732
commit
7d79fb20f6
@ -36,6 +36,7 @@
|
||||
))
|
||||
|
||||
(defun main() (prog ()
|
||||
(clear-screen)
|
||||
(princ "running...")
|
||||
(setq startTime (time))
|
||||
|
||||
|
@ -199,6 +199,7 @@
|
||||
|
||||
(clear-screen)
|
||||
(setq startTime (time))
|
||||
(princ "running...")
|
||||
(dotimes (z 10) (runall))
|
||||
|
||||
(write-string "moves: ") (princ moves) ; should be 6493
|
||||
|
14
Microsoft muLISP-86 v51/m.sh
Normal file
14
Microsoft muLISP-86 v51/m.sh
Normal file
@ -0,0 +1,14 @@
|
||||
str=$(tr '[a-z]' '[A-Z]' <<< $1)
|
||||
|
||||
cat COMMON.LSP STRUCTUR.LSP $str.LSP >FOO.LSP
|
||||
|
||||
# remove ^z end of file characters found in common.lsp and structur.lsp
|
||||
tr '\32' ' ' <FOO.LSP >BAR.LSP
|
||||
|
||||
# remove (RDS) twice from the file
|
||||
sed -e '/(RDS)/d' -i BAR.LSP
|
||||
|
||||
ntvdm -r:. -u -p -c mulisp BAR.LSP
|
||||
|
||||
rm FOO.LSP 2>/dev/null
|
||||
rm BAR.LSP 2>/dev/null
|
Loading…
Reference in New Issue
Block a user