summaryrefslogtreecommitdiff
path: root/src/brainfuck/program.cr
blob: cf4a0976942c37c6c72dfbf07802a9f197e93711 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require "./parser.cr"

class Brainfuck::Program
  def initialize(@parser : Brainfuck::Parser)
  end

  def interpret
    puts @parser.parse
  end

  def compile
  end
end