fix assigning value to type

This commit is contained in:
agra
2026-02-11 13:08:23 +02:00
parent c085aeef4c
commit cdc6c59dda
2 changed files with 4 additions and 1 deletions

View File

@@ -9,8 +9,9 @@ Vec4 :: Vector(4,f32);
main :: () {
x : Type = f64;
v:f64 = 3.2;
print("{}\n", x);
v:f64 = 3.2;
print("{}\n", v);
x = Vec4;
@@ -18,6 +19,7 @@ main :: () {
x = test;
print("{}\n", x);
}
// ** stdout **