urbit/pub/docs/dev/hoon/runes/cn/cnkt.md
Galen Wolfe-Pauly bb495844be doc -> docs
2015-10-20 10:51:45 -07:00

42 lines
619 B
Markdown

cenket, `%^`, %cnkt
============================
Slam, three arguments
`%^` is a synthetic rune that that [pull]()s [`$`]() from the [door]()
`p` with its sample set to `[%cntr q r s]`. `%^` in the most common case
simply [slam]()s `p` with `q`, `r` and `s`, similar to a function call
with three arguments.
Produces
--------
Twig: `[%cnkt p=twig q=twig r=twig s=twig]`
Sample
------
`p` is a [twig](), most commonly a [gate](). `q`, `r` and `s` are
[twig]()s.
Tall form
---------
%^ p
q
r
s
Wide form
---------
%^(p q r s)
Irregular form
--------------
None
Examples
--------