Sometimes it might be helpful to make a differce between `-> None` and `-> Unit`. We need to investigate how it is possible. Examples: ```python def some() -> Unit: print('Just prints') class Some(): def __init__(self) -> None: ... ```