Kaba struct Node ed

...

Syntax ed

struct Node
    var phi: f64
    var pos: vec2

    # constructors
    func mut __init__()
    func mut __init__(p: vec2)

    # operators
    func mut __assign__(other: Node)     # Node = Node

Elements ed

var phi: f64
...

var pos: vec2
...