19 lines
273 B
Go
19 lines
273 B
Go
// Copyright (c) 2024 Celestino Amoroso (celestino.amoroso@gmail.com).
|
|
// All rights reserved.
|
|
|
|
//go:build graph
|
|
|
|
// graph.go
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"git.portale-stac.it/go-pkg/expr"
|
|
)
|
|
|
|
func printGraph() {
|
|
r := expr.NewExprReticle(ast)
|
|
fmt.Println(r.String())
|
|
}
|