remove div and add div10

general division is for another day, the 10 version is manageable
also same code produces mod10
wip
This commit is contained in:
Torsten Ruger
2015-11-12 20:03:57 +02:00
parent a5afca10f6
commit 5c862111b9
6 changed files with 31 additions and 15 deletions

View File

@ -195,8 +195,6 @@ module Interpreter
result = left + right
when "-"
result = left - right
when "/"
result = left / right
when ">>"
result = left >> right
when "<<"