Files
the-way-to-go_ZH_CN/eBook/examples/chapter_3/run.cmd
2015-03-03 12:25:25 -05:00

10 lines
178 B
Batchfile

set GOROOT=E:\Go\GoforWindows\gowin32_release.r59\go
set GOBIN=$GOROOT\bin
set PATH=%PATH%;$GOBIN
set GOARCH=386
set GOOS=windows
echo off
8g %1.go
8l -o %1.exe %1.8
%1