61890b15cb
* wip * move print and JSON functions to modules * builtin functions are not replacable now * builtin functions are added for default nil symbol table * importables: builtin modules and source modules * refactoring runtime tests * fix tests * update documentation * cleanup * clean up cli * fix REPL prints
14 lines
160 B
Makefile
14 lines
160 B
Makefile
vet:
|
|
go vet ./...
|
|
|
|
generate:
|
|
go generate ./...
|
|
|
|
lint:
|
|
golint -set_exit_status ./...
|
|
|
|
test: generate vet lint
|
|
go test -race -cover ./...
|
|
|
|
fmt:
|
|
go fmt ./...
|