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

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

  def interpret
    something = @parser.parse
    puts something
  end
end