![Keithley 2651A Reference Manual Download Page 273](http://html1.mh-extra.com/html/keithley/2651a/2651a_reference-manual_661729273.webp)
Model 2651A High Power System SourceMeter® Instrument Reference Manual
Section 6: Instrument programming
2651A-901-01 Rev. A / March 2011
6-29
Example: Break with infinite loop
a, b = 0, 1
while true do
print(a,b)
a, b = b, a + b
if a > 500 then
break
end
end
This example uses a
break
statement
that causes the while loop to exit if the
value of
a
becomes greater than 500.
Output:
0.00 1.00
1.00 1.00
1.00 2.00
2.00 3.00
3.00 5.00
5.00 8.00
8.00 1.01
1.01 2.01
2.01 3.01
3.01 5.01
5.01 8.01
8.01 1.02
1.02 2.02
2.02 3.02
3.02 6.02
Tables and arrays
Lua makes extensive use of the data type table, which is a flexible array-like data type. Table indices
start with 1. Tables can be indexed not only with numbers, but with any value (except
nil
). Tables
can be heterogeneous, which means that they can contain values of all types (except
nil
).
Tables are the sole data structuring mechanism in Lua; they may be used to represent ordinary
arrays, symbol tables, sets, records, graphs, trees, and so on. To represent records, Lua uses the
field
name
as an index. The language supports this representation by providing
a.name
as an easier
way to express
a["name"]
.