Initial commit. Create default project.

This commit is contained in:
2018-05-25 12:15:57 -07:00
commit fd432f6653
11 changed files with 123 additions and 0 deletions

9
spec/Go_spec.cr Normal file
View File

@@ -0,0 +1,9 @@
require "./spec_helper"
describe Go do
# TODO: Write tests
it "works" do
false.should eq(true)
end
end

2
spec/spec_helper.cr Normal file
View File

@@ -0,0 +1,2 @@
require "spec"
require "../src/Go"