diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2018-02-20 22:21:46 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2018-02-20 22:21:46 -0500 |
commit | f414175e0cf08e02d65ca09028641ac2adbd0f8e (patch) | |
tree | 76637b32274f64975b4d225aea6573681b5dc9fe /script | |
parent | 5d85baa270b046eedf472d4cb851fe17fb608fc5 (diff) |
stdlib independence, fixes for calculator
Diffstat (limited to 'script')
-rw-r--r-- | script | 31 |
1 files changed, 14 insertions, 17 deletions
@@ -1,18 +1,15 @@ -func divisible - if (arg1 == 0) - ret 0 - end - ret (arg0 % arg1) -end +set a "Het\n" +set b a +print b -set a 0 -set b 4 -do - set a (a + 1) - divisible a b > i - if (i == 0) - print a - end -while (a < 100) - -print "All done!" +#set a 0 +#do +# print "> " +# gets text +# set input "(" +# concat input text +# concat input ")" +# expr input a +# print a +# print "\n" +#while (1) |