Class: Brainfucktt::Language::OutputByte
- Defined in:
- lib/brainfucktt/language/output_byte.rb
Overview
.
Instance Method Summary collapse
-
#run(parser) ⇒ Object
Output the byte at the pointer as an ASCII character.
Methods inherited from Node
Instance Method Details
#run(parser) ⇒ Object
Output the byte at the pointer as an ASCII character.
10 11 12 |
# File 'lib/brainfucktt/language/output_byte.rb', line 10 def run(parser) parser.output.print parser.byte.to_s end |