mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-19 12:51:51 +03:00
48 lines
539 B
Markdown
48 lines
539 B
Markdown
|
[wutgal, `?<`, %wtgl](#wtgl)
|
||
|
============================
|
||
|
|
||
|
Assert no
|
||
|
|
||
|
`?<` is a synthetic hoon that produces `q`, asserting that `p` is no
|
||
|
(`|`, 1).
|
||
|
|
||
|
See also
|
||
|
--------
|
||
|
|
||
|
[wutgar, `?>`, %wtgr](#wtgr)
|
||
|
============================
|
||
|
|
||
|
Produces
|
||
|
--------
|
||
|
|
||
|
Twig: `[%wtgl p=twig q=twig]`
|
||
|
|
||
|
Sample
|
||
|
------
|
||
|
|
||
|
`p` and `q` are [twig]()s.
|
||
|
|
||
|
Tall form
|
||
|
---------
|
||
|
|
||
|
?< p
|
||
|
q
|
||
|
|
||
|
Wide form
|
||
|
---------
|
||
|
|
||
|
?<(p q)
|
||
|
|
||
|
Irregular form
|
||
|
--------------
|
||
|
|
||
|
None
|
||
|
|
||
|
Examples
|
||
|
--------
|
||
|
|
||
|
~zod/try=> ?<(=(0x1 0) %foo)
|
||
|
%foo
|
||
|
~zod/try=> ?<(=(0x1 1) %foo)
|
||
|
! exit
|