Added another Rain testcase
This commit is contained in:
parent
33b04e7646
commit
3fede166f6
13
testcases/lists.rain
Normal file
13
testcases/lists.rain
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
process main (?uint8: in, !uint8: out, !uint8: err)
|
||||||
|
{
|
||||||
|
[uint8]: alphabet;
|
||||||
|
|
||||||
|
alphabet = ['a' .. 'z'];
|
||||||
|
|
||||||
|
alphabet += ['A' .. 'Z'];
|
||||||
|
|
||||||
|
seqeach (c : alphabet)
|
||||||
|
{
|
||||||
|
out ! c;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user