mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* update grammar * implementation * formatting * executor implementation, tests * docs, core-changes * fix warning introduced in #760 * add format option FormatterEllipsisSpacing * update core-changes
5 lines
No EOL
199 B
Text
5 lines
No EOL
199 B
Text
var dict1 := dictionary{ "a" -> 1, "b" -> 2 };
|
|
var dict2 := dictionary{ "b" -> 3, "c" -> 4 };
|
|
|
|
var dict := dictionary{ dict1..., dict2... };
|
|
Print( dict ); // Output: { "a" -> 1, "b" -> 3, "c" -> 4 } |