first ecli commit

This commit is contained in:
2026-06-03 08:59:48 +02:00
parent 9eb3e2d072
commit 6a6c897268
15 changed files with 1659 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
// 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())
}