Compound data type: Difference between revisions

Initial FutureBasic task solution added
imported>Acediast
(→‎{{header|COBOL}}: added description)
(Initial FutureBasic task solution added)
Line 954:
3 4
</pre>
 
=={{header|FutureBasic}}==
<syntaxhighlight lang="futurebasic">
CGRect r = {0, 0, 250, 100}
printf @"x = %.f : y = %.f : width = %.f : height = %.f", r.origin.x, r.origin.y, r.size.width, r.size.height
 
HandleEvents
</syntaxhighlight>
{{output}}
<pre>
x = 0 : y = 0 : width = 250 : height = 100
 
</pre>
 
 
=={{header|Go}}==
715

edits