mirror of
https://github.com/urbit/shrub.git
synced 2024-12-18 07:42:20 +03:00
21 lines
284 B
C
21 lines
284 B
C
/* j/3/mug.c
|
|
**
|
|
** This file is in the public domain.
|
|
*/
|
|
#include "all.h"
|
|
|
|
|
|
/* functions
|
|
*/
|
|
u3_noun
|
|
u3wc_mug(u3_noun cor)
|
|
{
|
|
u3_noun sam;
|
|
|
|
if ( u3_none == (sam = u3r_at(u3x_sam, cor)) ) {
|
|
return u3m_bail(c3__exit);
|
|
} else {
|
|
return u3r_mug(sam);
|
|
}
|
|
}
|