diff options
Diffstat (limited to 'examples/demo/demo.odin')
| -rw-r--r-- | examples/demo/demo.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin index 294668f14..a5455846d 100644 --- a/examples/demo/demo.odin +++ b/examples/demo/demo.odin @@ -1606,7 +1606,7 @@ where_clauses :: proc() { where intrinsics.type_is_numeric(E) { x := a.y*b.z - a.z*b.y y := a.z*b.x - a.x*b.z - z := a.x*b.y - a.y*b.z + z := a.x*b.y - a.y*b.x return T{x, y, z} } |