1 2 3 4 5 6 7 8 9 10 11 12 13
require "./util.cr" abstract struct Flint::Program def initialize(@source_io : IO) end abstract def interpret : Nil def compile raise Util::NoCompilerAvailableError.new("No compiler available for this language.") end end