1
0
forked from Mirror/wren

renamed filler constructor in list to match issue

This commit is contained in:
root
2016-07-17 12:24:19 +10:00
parent 45d9794476
commit 244faa5700
2 changed files with 2 additions and 2 deletions

View File

@ -3,6 +3,6 @@ var list = List.new(5)
System.print(list.count) // expect: 5
System.print(list) // expect: [null, null, null, null, null]
var list2 = List.new(5, 2)
var list2 = List.filled(5, 2)
System.print(list2.count) // expect: 5
System.print(list2) // expect: [2, 2, 2, 2, 2]