shrub/jets/c/mur.c

20 lines
246 B
C
Raw Normal View History

2019-01-02 22:12:14 +03:00
/* j/3/mur.c
**
*/
#include "all.h"
/* functions
*/
u3_noun
u3wc_mur(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);
2019-01-02 22:12:14 +03:00
}
}