Add a comment

This commit is contained in:
flameyosflow 2025-12-19 18:53:41 +02:00
commit 3b4e5582b7

View file

@ -25,7 +25,7 @@ fn main() -> int do
# Test enum (stack-allocated for now)
let status = Status::Ok();
# Test array (heap-allocated)
# Test array (heap-allocated), no way to preinit an array with a length rn
let arr = [1, 2, 3, 4, 5];
let first = arr[0];