mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-29 13:24:48 +00:00
21 lines
273 B
Text
21 lines
273 B
Text
|
|
|
|
SuperSimple := Rectangle {
|
|
color: green;
|
|
|
|
for xx Text {}
|
|
// ^error{Invalid 'for' syntax: there should be a 'in' token}
|
|
|
|
|
|
for xx in zz: Hello {
|
|
Rectangle {}
|
|
}
|
|
|
|
Image {
|
|
}
|
|
|
|
for xx[idx] in zz: Hello {
|
|
Rectangle {}
|
|
}
|
|
}
|
|
|