```py # FIXME: should be head[T](l: list[T]) -> Optional[T] def head(l): return None if not l else l[0] ```