You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
; Global scope
Point := (struct (int x) (int y))
; Local scope
{
pOrigin := (Point 0 0) ; Define a new point on the stack
(pOrigin x) :<- (+ (pOrigin x) 1) ; increment x
(pOrigin y) :<- (+ (pOrigin y) 1) ; increment y
}