Class: Brainfucktt::Language::InputByte
- Defined in:
- lib/brainfucktt/language/input_byte.rb
Overview
,
Instance Method Summary collapse
-
#run(parser) ⇒ Object
Input an ASCII character and store it in the byte at the pointer.
Methods inherited from Node
Instance Method Details
#run(parser) ⇒ Object
Input an ASCII character and store it in the byte at the pointer.
10 11 12 |
# File 'lib/brainfucktt/language/input_byte.rb', line 10 def run(parser) parser.byte = get_character(parser.input) end |