Skip to content

Commit 637ffe0

Browse files
committed
gotypes: a tutorial on go/types, the Go type checker
Better late than never. Change-Id: Iedd3aaa9dc3eb40b79b7430ed2d69e2d4f87dc86 Reviewed-on: https://go-review.googlesource.com/17388 Reviewed-by: Robert Griesemer <[email protected]>
1 parent fef4da8 commit 637ffe0

File tree

14 files changed

+5571
-0
lines changed

14 files changed

+5571
-0
lines changed

gotypes/Makefile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
all: README.md
3+
4+
README.md: go-types.md weave.go $(wildcard */*.go)
5+
go run weave.go go-types.md >README.md
6+
7+
# This is for previewing using github.
8+
# $HOME/markdown must be a github client.
9+
test: README.md
10+
cp README.md $$HOME/markdown/
11+
(cd $$HOME/markdown/ && git commit -m . README.md && git push)
12+

0 commit comments

Comments
 (0)