Arrays: Difference between revisions

Content added Content deleted
(→‎Some further exposition:: Reduce the hand-waving and outright lies a bit.)
Line 5,362: Line 5,362:
Row 2: 2-count
Row 2: 2-count
Row 3: 3-count
Row 3: 3-count
</pre>

=={{header|SPL}}==
<lang spl>
a[1] = 2.5
a[2] = 3
a[3] = "Result is "

#.output(a[3],a[1]+a[2])
</lang>
{{out}}
<pre>
Result is 5.5
</pre>
</pre>