14 lines
216 B
Plaintext
14 lines
216 B
Plaintext
# Automatically generated; edit in Sphinx source code, not here.
|
|
module Test;
|
|
|
|
for ( i in [1, 2, 3] )
|
|
print i;
|
|
|
|
for ( i in b"abc" ) {
|
|
print i;
|
|
}
|
|
|
|
global v = vector("a", "b", "c");
|
|
|
|
for ( i in v )
|
|
print i; |