mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-29 12:15:43 +03:00
22 lines
510 B
C
22 lines
510 B
C
/* j/6/tack.c
|
|
**
|
|
*/
|
|
#include "all.h"
|
|
|
|
u3_noun
|
|
u3qfu_tack(u3_noun van,
|
|
u3_noun sut,
|
|
u3_noun hyp,
|
|
u3_noun mur)
|
|
{
|
|
u3_noun von = u3i_molt(u3k(van), u3x_sam, u3k(sut), 0);
|
|
u3_noun gat = u3j_hook(von, "tack");
|
|
|
|
return u3n_kick_on(u3i_molt(gat,
|
|
u3x_sam_2,
|
|
u3k(hyp),
|
|
u3x_sam_3,
|
|
u3k(mur),
|
|
0));
|
|
}
|