KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
astree
★ 13
Open GitHub ↗
tree command for Go AST
Download README (.md)
Explore Similar Repositories
talk-iml
:
PyConDE 2019 talk about interpretable machine learning
atomize-docs
:
Documentation and landing page of atomize
pySRURGS
:
Symbolic regression by uniform random global search
torrento
:
A Dart package that wraps various Web Apis for controlling and managing torrent clients.
georide-position
:
get the last day deplacement of the georide tracker
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
astree
?
Download (.md)
astree --- tree command for Go AST # install ``` go get -u github.com/knsh14/astree/cmd/astree ``` # options # Example https://play.golang.org/p/up3cRnFCm61 ``` package main import ( "go/parser" "go/token" "log" "os" "github.com/knsh14/astree" ) func main() { code := ` package main import ( "fmt" ) func main() { fmt.Println("Hello, playground") }` fs := token.NewFileSet() f, err := parser.ParseFile(fs, "main.go", code, 0) if err != nil { log.Fatal(err) } astree.File(os.Stdout, fs, f) } ```