From a9e4e9f0167ed344e55ba298928a575cabb1de0d Mon Sep 17 00:00:00 2001 From: nodist Date: Sun, 24 May 2026 17:24:28 -0400 Subject: add format string example --- docs/type_system/tuple.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'docs/type_system/tuple.md') diff --git a/docs/type_system/tuple.md b/docs/type_system/tuple.md index 0c89c67..fc1cdcb 100644 --- a/docs/type_system/tuple.md +++ b/docs/type_system/tuple.md @@ -11,3 +11,15 @@ Tuple[TYPE; TYPE.SYMBOL; ...] # Operators ## ``get` + +## ``set` + +```text +Result[Void] : target `set (KEY; VALUE) + +items : Tuple(1; 2; 3) +items `set (0; 4) +`log items // Tuple[I64; I64; I64] $ (4; 2; 3) +``` + +# Mutating -- cgit v1.2.3