From 9b70ea81763de99b8d49abeb6c38ad47117a2270 Mon Sep 17 00:00:00 2001 From: Drew Youngwerth Date: Wed, 25 Sep 2024 18:23:48 -0700 Subject: [PATCH] Fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 98918c8..d6cfc8e 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ false // Boolean 1 // i32 by default 1.0 // f64 by default "Hello!" // String literal, can be multiline, supports interpolation via ${} (NOTE: Interpolation not yet implemented) -[1, 2, 3] // Array literal. (NOTE: Not yet implemented. Arrays can be initialized with new_array( from: FixedArray(val1, val2, etc) ) +[1, 2, 3] // Array literal. (NOTE: Not yet implemented. Arrays can be initialized with new_array({ from: FixedArray(val1, val2, etc) }) (1, 2, 3) // Tuple literal (NOTE: Not yet implemented) {x: 2, y: 4} // Structural object literal ```