mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 04:48:29 +08:00
10 lines
178 B
Batchfile
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
|