mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
12 lines
202 B
Bash
12 lines
202 B
Bash
Prelude> head []
|
|
*** Exception: Prelude.head: empty list
|
|
Prelude> tail []
|
|
*** Exception: Prelude.tail: empty list
|
|
Prelude> tail [1]
|
|
[]
|
|
Prelude> head [1]
|
|
1
|
|
Prelude> null []
|
|
True
|
|
Prelude> null [[]]
|
|
False
|