tests: add tests for multi-iterators
[nit.git] / tests / base_for_multi.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 var a = [10, 20, 30, 40]
16 var m = new HashMap[Int, Int]
17 m[1] = 11
18 m[2] = 22
19 m[3] = 33
20 m[4] = 44
21
22 0.output
23 for i in a, j in [1..10[, k in a, l1, l2 in m do
24 i.output
25 j.output
26 k.output
27 l1.output
28 l2.output
29 '\n'.output
30 end
31
32 0.output
33 for i in a, j in [1..10[, x in [0..0[, k in a, l1, l2 in m do
34 i.output
35 j.output
36 k.output
37 l1.output
38 l2.output
39 x.output
40 '\n'.output
41 end
42 0.output
43
44 #alt1# for i in i do end
45 #alt1# for i in j, j in [1..5] do end
46 #alt1# for i in [1..2], j in i do end