aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAndreas T Jonsson <mail@andreasjonsson.se>2024-05-02 09:27:46 +0200
committerAndreas T Jonsson <mail@andreasjonsson.se>2024-05-02 09:27:46 +0200
commit7feff1c11335be9c0d804c3ca93050b7d154aad8 (patch)
tree62c89fcafad6b6c9445cb37153e62a6b23223d39 /examples
parent6bbdbb4447b0a2b5b485ae4351016b05ae79758f (diff)
parentfd582015fe2bbaabc42f78caefec1bd95f4d1465 (diff)
Merged with master
Diffstat (limited to 'examples')
-rw-r--r--examples/demo/demo.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin
index 1f6d337e8..a62c11310 100644
--- a/examples/demo/demo.odin
+++ b/examples/demo/demo.odin
@@ -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