From af41058979a121aceec58c9dd0d115a7b4a7b745 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sat, 23 Jul 2022 00:53:42 +0300 Subject: [PATCH] doc: map ordering --- doc/docs.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/docs.md b/doc/docs.md index 0b382b9f07..b5839807cf 100644 --- a/doc/docs.md +++ b/doc/docs.md @@ -1272,6 +1272,8 @@ val2 := arr[333]? println(val2) ``` +Maps are ordered by insertion, like dictionaries in Python. The order is a guaranteed language feature. This may change in the future. + ## Module imports For information about creating a module, see [Modules](#modules).