blob: d8ec8fb1ab6ba955292348f12331525b7504a726 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
use std
const slpart = array[1:3]
const slfull = array[:]
const slinline = [6,7,8][:]
const array = [1,2,3,4,5]
const main = {
/* expected output 23 */
for x : slpart
std.put("{}", x)
;;
/* expected output 12345 */
for x : slfull
std.put("{}", x)
;;
/* expected output 678 */
for x : slinline
std.put("{}", x)
;;
std.put("\n")
}
|