diff options
author | Ayke van Laethem <[email protected]> | 2018-04-20 16:32:40 +0200 |
---|---|---|
committer | Ayke van Laethem <[email protected]> | 2018-04-20 16:32:40 +0200 |
commit | 45e7376f391cd894214d578724dcfd22776cf781 (patch) | |
tree | 093619cbaa105e9ff83e75fb3cde0e2c07dc2c04 /Makefile | |
parent | ff9e7a8b7789ade56367e741730c89192c8a999a (diff) | |
download | tinygo-45e7376f391cd894214d578724dcfd22776cf781.tar.gz tinygo-45e7376f391cd894214d578724dcfd22776cf781.zip |
Implement print() and println() in Go
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ build/tgo: *.go @mkdir -p build @go build -o build/tgo -i . -build/hello.o: build/tgo src/examples/hello/*.go +build/hello.o: build/tgo src/examples/hello/*.go src/runtime/*.go @./build/tgo -printir -o build/hello.o examples/hello build/runtime.o: src/runtime/*.c src/runtime/*.h |