Creates a new /list with the values provided as arguments. If the values provided have both keys and values, an associated list will be created.
for( in (1, 2, 3))
world.log << element // 1, 2, 3
= list("foo" = 1, "bar" = 2, "car" = 3)
for( in assoc_list)
world.log << key // foo, bar, car
world.log << assoc_list[key] // 1, 2, 3