The Unit type from functional programming.
It can be seen as the void type but with a single value in it.
Unit = tuple[]
func unit(): Unit {...}{.raises: [], tags: [].}
func default(T: typedesc[Unit]): Unit
func default[T: Unit](): Unit
func doNothing[T](_: T): Unit