Browse Source

Fix unseen `print` call in demo

Feoramund 1 year ago
parent
commit
bbebb4ad60
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/demo/demo.odin

+ 1 - 1
examples/demo/demo.odin

@@ -2385,7 +2385,7 @@ matrix_type :: proc() {
 
 
 		c := a * b
 		c := a * b
 		#assert(type_of(c) == matrix[2, 2]f32)
 		#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
 	{ // Matrices support multiplication between matrices and arrays