Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
gop / usr / lib / gop / demo / gop-parser / parser.gop
Size: Mime:
import (
	"gop/ast"
	"gop/parser"
)

e := parser.parseExpr("10 + 3.2")!.(*ast.BinaryExpr)
echo e.X, e.Op, e.Y