Toggle navigation
Extempore Functions Index
Core release (v0.8.9)
(current)
XTM Extensions
About
Submit
hidden link
list-tail
scheme
Defined in:
https://github.com/digego/extempore/tree/v0.8.9/runtime/init.xtm
Implementation
(
define
(
list-tail
x
k
)
(
if
(
zero?
k
)
x
(
list-tail
(
cdr
x
)
(
-
k
1
))))
Back to Index