you could just show the source, `listOf(1)` ends u...
# announcements
f
you could just show the source,
listOf(1)
ends up calling, Collections.singletonList,
listOf(1, 2)
ends up calling Arrays.asList (which is technically mutable as Karel said since you can call
set
on it)