Updating gitignores and initializing module for golox

This commit is contained in:
Mariano Uvalle 2023-05-01 04:49:16 +00:00
parent 64ee7d2189
commit 3d0f3b95d5
4 changed files with 93 additions and 92 deletions

17
golox/.gitignore vendored Normal file
View file

@ -0,0 +1,17 @@
### Go ###
# If you prefer the allow list template instead of the deny list, see community template:
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
#
# Binaries for programs and plugins
*.exe~
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
# Dependency directories (remove the comment below to include it)
# vendor/
# Go workspace file
go.work

3
golox/go.mod Normal file
View file

@ -0,0 +1,3 @@
module github.com/AYM1607/crafting-interpreters/golox
go 1.20