Lines Matching refs:point
188 typeset point=(typeset -i x=3 y=4)
189 (( (point.x*point.x + point.y*point.y) == 25 )) || err_exit "local compound variable not working"
191 point=(integer x=6 y=8)
193 (( (point.x*point.x + point.y*point.y) == 100 )) || err_exit "global compound variable not preserved"
198 then print -r -- "$point"
201 typeset -S point=(typeset -i x=3 y=4)
202 (( (point.x*point.x + point.y*point.y) == 25 )) || err_exit "local compound variable not working"
203 point.y=5
204 point.z=foobar
207 (( (point.x*point.x + point.y*point.y) == 100 )) || err_exit "global compound variable not preserved"