adding loops tests
All checks were successful
Build / build (push) Successful in 2m2s
Test / build (push) Successful in 5m10s

This commit is contained in:
2026-01-18 18:18:21 +01:00
parent 04092e25c1
commit 9868b34f92
6 changed files with 158 additions and 49 deletions

View File

@@ -10,8 +10,10 @@ struct FragOut
[entry(frag)]
fn main() -> FragOut
{
let value: f32 = 0.0;
for i in 1 -> 20 {
let value: f32 = 1.0;
for i in 1 -> 5 {
if (i == 3)
continue;
value *= f32(i);
}
let output: FragOut;