Created
April 2, 2016 10:10
-
-
Save ochronus/77e1c450930ed7b99255c1510e3556ba to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn bf-interpreter [program-code] | |
(loop [cells [0N], current-cell 0, instruction-pointer 0] | |
(condp = (get program-code instruction-pointer) | |
\+ (recur (update-in cells [current-cell] inc) current-cell (inc instruction-pointer)) | |
\- (recur (update-in cells [current-cell] dec) current-cell (inc instruction-pointer)) | |
(recur cells current-cell (inc instruction-pointer))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment