From 17ec9006f96197b241278a9fcbaa507e63e15611 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 20 Sep 2025 14:20:54 -0400 Subject: Simplify quotes by limiting to `,'," --- docs/c-interoperability.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/c-interoperability.md') diff --git a/docs/c-interoperability.md b/docs/c-interoperability.md index 3c0906ee..ae959220 100644 --- a/docs/c-interoperability.md +++ b/docs/c-interoperability.md @@ -23,12 +23,12 @@ without evaluating to anything: ```tomo # Inline C block: -C_code { +C_code ` printf("This is just a block that is executed without a return value\n"); -} +` # Inline C expression (you must specify a type) -val := C_code : Int32 (int x = 1; x + 1) +val := C_code : Int32 `int x = 1; x + 1` ``` Inline C expressions must specify a type and they can be [compound statement -- cgit v1.2.3