a list is a chain of cells ending in ~.
~
~[...] writes one.
~[...]
:~ makes a null-terminated list.
:~
:~(1 2 3) is ~[1 2 3].
:~(1 2 3)
~[1 2 3]
irregular forms:
~[a b c] is :~(a b c)
~[a b c]
:~(a b c)