From a0ac652cd1eebdc42425b34f1685f8cb20cb4eea Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 31 Aug 2025 18:03:05 -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