Element - ḣ
- Head Extract
Characters:
ḣ
Description
Separate the first item of something and push both to stack
Overloads
any
-a[0], a[1:] (head extract)
Examples
`hello` ḣ
=`ello`
⟨1|2|3⟩ ḣ
=⟨2|3⟩
123 ḣ
=⟨2|3⟩
⟨⟩ ḣ
=⟨⟩