This repository contains skeleton code that Code Retreat Participants can use to get started.
# Update BUILD files
./pleasew puku fmt //go/...
# Run the binary
./pleasew run //go/cmd/conway
# Run the tests
./pleasew test //go/...
# Install third party packages
./pleasew build //third_party/go:toolchain
GO="$PWD/$(./pleasew query outputs //third_party/go:toolchain)/bin/go"
(cd third_party/go && $GO get github.com/example/module@latest) && ./pleasew puku sync -w
# Run the binary
./pleasew run //python:main
# Run the tests
./pleasew test //python/...