add (c)lox from Crafting Interpreters

master
Alpha Chen 2 years ago
parent 85d2709666
commit 884cde5464

@ -0,0 +1,15 @@
class Lox < Formula
desc "The Lox language from Crafting Interpreters"
homepage "https://craftinginterpreters.com/the-lox-language.html"
license "MIT"
head "https://github.com/munificent/craftinginterpreters.git"
def install
system "make clox"
bin.install "clox"
end
test do
system "lox"
end
end
Loading…
Cancel
Save