Variables: Difference between revisions

Content added Content deleted
m (syntax highlighting fixup automation)
No edit summary
Line 2,134: Line 2,134:
Var ii = 6728 '' implicit integer
Var ii = 6728 '' implicit integer
Var id = 6728.0 '' implicit double</syntaxhighlight>
Var id = 6728.0 '' implicit double</syntaxhighlight>

=={{header|FutureBasic}}==
<syntaxhighlight lang="futurebasic">
void local fn Variables
dim a as long // dim var as type
dim as long b // dim as type var
long c // 'dim as' is optional
long x, y, z // declarate multiple vars in one line
CFStringRef s1 = @"Alpha", s2 = @"Bravo" // declare and assign in same statement
CFArrayRef array = @[s1,s2] // declare and assign an array
c = 123 // assign
CGRect r = {20,20,120,32} // declare and assign record (struct)
end fn

fn Variables

HandleEvents
</syntaxhighlight>


=={{header|GAP}}==
=={{header|GAP}}==