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 ```