ycc

a toy compiler based on the screencast from destroy all software
git clone git://git.ter0.net/ycc.git
Log | Files | Refs

commit 1bba0764a4fe0d4e36cb16ec89e56a04ba79fde7
parent 5ed7349e8ec751cbf2732c67673b8d6b17ea35de
Author: Chris Johns <chris@ter0.net>
Date:   Tue, 16 Nov 2021 22:06:01 +0000

Update to go1.17.3

Diffstat:
MMakefile | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -1,11 +1,12 @@ +go = go1.17.3 .PHONY: build build: - go1.17.2 build + $(go) build .PHONY: run run: - go1.17.2 run . + $(go) run . .PHONY: fmt fmt: - go1.17.2 fmt . + $(go) fmt .