Files
ivy/doc/sample/ForLoop.mie

16 lines
239 B
Plaintext
Raw Permalink Normal View History

2026-01-19 14:20:04 +00:00
ivy.module @test {
%cout = ivy.global-ref @cout
2026-01-19 14:20:04 +00:00
ivy.init-text {
%str = ivy.str.constant "hello"
%.str.0 = ivy.str.constant "done"
2026-01-19 14:20:04 +00:00
ivy.for-each %c in %str {
ivy.msg to %cout, -put:%c
}
2026-01-19 14:20:04 +00:00
ivy.msg to %cout, -put:%.str.0
2026-01-19 14:20:04 +00:00
}
}