aboutsummaryrefslogtreecommitdiff
path: root/core/runtime
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-10-19 11:31:11 +0100
committergingerBill <bill@gingerbill.org>2021-10-19 11:31:11 +0100
commit1556fad65a52af7683d5c80f2f724ef252525163 (patch)
tree565b7327f9ae66e692641c2ef5659d11f9e091fc /core/runtime
parent243e2e2b8a7566087375178a66b25b5d9ac9a356 (diff)
Change syntax for matrices to `matrix[R, C]T`
Diffstat (limited to 'core/runtime')
-rw-r--r--core/runtime/print.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/runtime/print.odin b/core/runtime/print.odin
index f32ac0831..8a14eba08 100644
--- a/core/runtime/print.odin
+++ b/core/runtime/print.odin
@@ -372,9 +372,9 @@ print_type :: proc "contextless" (ti: ^Type_Info) {
print_type(info.slice)
case Type_Info_Matrix:
- print_string("[")
+ print_string("matrix[")
print_u64(u64(info.row_count))
- print_string("; ")
+ print_string(", ")
print_u64(u64(info.column_count))
print_string("]")
print_type(info.elem)