From 1e1f39bd6e0ebf72c79479faf7ab614bad331268 Mon Sep 17 00:00:00 2001 From: Krzosa Karol Date: Fri, 30 Sep 2022 16:47:31 +0200 Subject: [PATCH] Testing --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 010ddcb..8204b70 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Release :: (m: *Memory) ## Operator overload example -``` +``` odin Vec3 :: struct ;; x: F32; y: F32; z: F32 "-" :: (a: Vec3, b: Vec3): Vec3 ;; return {a.x-b.x, a.y-b.y, a.z-b.z} "-" :: (a: Vec3): Vec3 ;; return {-a.x, -a.y, -a.z } @@ -66,7 +66,7 @@ Vec3 :: struct ;; x: F32; y: F32; z: F32 ## Unicode conversion example -``` +``` zig Utf8ToUtf32 :: (c: *U8, max_advance: S64): U32, S64 out_str: U32 advance: S64