Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

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;