Fix unseen print call in demo

This commit is contained in:
Feoramund
2024-04-28 17:20:52 -04:00
parent 700f9c94bd
commit bbebb4ad60

View File

@@ -2385,7 +2385,7 @@ matrix_type :: proc() {
c := a * b
#assert(type_of(c) == matrix[2, 2]f32)
fmt.tprintln("c = a * b", c)
fmt.println("c = a * b", c)
}
{ // Matrices support multiplication between matrices and arrays