bsl/examples/struct.rkt
#lang planet wrturtle/pyret/bsl

# structures
struct point (x,y)

p = point (2,3)

p.x
p.y