package
0.0.0-20240903065352-a035e3d95284
Repository: https://github.com/johansteyn/learn.git
Documentation: pkg.go.dev
# README
Without Bazel
Run:
% go run helloworld.go
Build:
% go build helloworld.go
With Bazel
https://github.com/bazelbuild/rules_go
Run:
% bazel run :helloworld
Build:
% bazel run :helloworld
Once built, it can be run using:
% bazel-bin/helloworld_/helloworld