/astparsestr

Simple lib for parsing ast from the string

Primary LanguageGoMIT LicenseMIT

AstParseStr

Simple parsing of the ast tree from strings

Example

package main

import "github.com/saromanov/astparsestr"

func main() {
	src := `
4`
	astparsestr.AstParseExpr(src)
}