mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-26 17:30:02 +00:00
Change syntax for matrices to matrix[R, C]T
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user