From d1efaec64b958326974c747fee26b7ddf9497f40 Mon Sep 17 00:00:00 2001 From: Marius Kintel Date: Sun, 17 Aug 2025 17:48:30 -0400 Subject: [PATCH] Added swizzle docs --- cheatsheet/snapshot.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cheatsheet/snapshot.html b/cheatsheet/snapshot.html index e698454..e8bc1ac 100644 --- a/cheatsheet/snapshot.html +++ b/cheatsheet/snapshot.html @@ -148,8 +148,8 @@

Lists

  create a list
var = list[2];
  index a list (from 0)
-
var = list.z;
-
  dot notation indexing (x/y/z)
+
list2 = list1.xyzz;
+
  swizzling