Instantiating a struct in Verse

No problem like this

Coordinates := struct:
    X : float = 0.0
    Y : float = 0.0

hello_world_device := class(creative_device):
    Test : Coordinates = Coordinates {
        X:= 0.0,
        Y:= 10.0
    }
2 Likes