Skip to content

Instantly share code, notes, and snippets.

@guaracy
Created August 16, 2024 05:58
Show Gist options
  • Save guaracy/d0a370aee437bb77c0c5910090a26ddd to your computer and use it in GitHub Desktop.
Save guaracy/d0a370aee437bb77c0c5910090a26ddd to your computer and use it in GitHub Desktop.
BF em 23 linhas (legível)
Red []
bf: function [prog][
size: 30000
cells: make string! size
append/dup cells null size
parse prog [
some [
">" (cells: next cells)
| "<" (cells: back cells)
| "+" (cells/1: cells/1 + 1)
| "-" (cells/1: cells/1 - 1)
| "." (prin cells/1)
| "," (cells/1: first input "")
| "[" [if (cells/1 = null) thru "]" | none]
| "]" [
pos: if (cells/1 <> null)
(pos: find/reverse pos #"[") :pos
| none
]
| skip
]
]
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment