Skip to content
This repository was archived by the owner on Feb 25, 2024. It is now read-only.

Commit 1301c6c

Browse files
1 parent 4103398 commit 1301c6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/vim9.jax

+2-2
Original file line numberDiff line numberDiff line change
@@ -1800,10 +1800,10 @@ null_<type> ではなく空コンテナを使用してコンテナ変数をク
18001800
var s2: list<string> = null_list
18011801
echo s1 # 出力: "[]"
18021802
echo s2 # 出力: "[]"
1803-
1803+
18041804
echo s1 + ['a'] # 出力: "['a']"
18051805
echo s2 + ['a'] # 出力: "['a']"
1806-
1806+
18071807
echo s1->add('a') # 出力: "['a']"
18081808
echo s2->add('a') # E1130: Can not add to null list
18091809
<

0 commit comments

Comments
 (0)