Added another Rain testcase

This commit is contained in:
Neil Brown 2008-03-21 16:35:21 +00:00
parent 33b04e7646
commit 3fede166f6

13
testcases/lists.rain Normal file
View 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;
}
}