1
0
mirror of https://github.com/golang/go synced 2024-10-05 11:41:22 -06:00
go/src/cmd/yacc/testdata/expr
Ainar Garipov 7f9f70e5b6 all: fix misprints in comments
These were found by grepping the comments from the go code and feeding
the output to aspell.

Change-Id: Id734d6c8d1938ec3c36bd94a4dbbad577e3ad395
Reviewed-on: https://go-review.googlesource.com/10941
Reviewed-by: Aamir Khan <syst3m.w0rm@gmail.com>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2015-06-11 14:18:57 +00:00
..
expr.y cmd/yacc/testdata/expr: fix handling of negative numbers 2015-03-11 04:20:42 +00:00
main.go all: fix misprints in comments 2015-06-11 14:18:57 +00:00
README

This directory contains a simple program demonstrating how to use
the Go version of yacc.

To build it:

	$ go generate
	$ go build

or

	$ go generate
	$ go run expr.go

The file main.go contains the "go generate" command to run yacc to
create expr.go from expr.y. It also has the package doc comment,
as godoc will not scan the .y file.

The actual implementation is in expr.y.

The program is not installed in the binary distributions of Go.