chalk/src/chalk.cr

11 lines
167 B
Crystal

require "./chalk/*"
require "option_parser"
module Chalk
config = Config.parse!
exit unless config.validate!
compiler = Compiler.new config
compiler.run
end