Reorganized file structure

This commit is contained in:
2024-07-11 12:04:51 +02:00
parent c2401bf826
commit 7b18056006
7 changed files with 95 additions and 58 deletions

12
src/build/ast/Loop.go Normal file
View File

@ -0,0 +1,12 @@
package ast
import "fmt"
// Loop represents a block of repeatable statements.
type Loop struct {
Body AST
}
func (node *Loop) String() string {
return fmt.Sprintf("(loop %s)", node.Body)
}