mbed I/F binding for mruby

Dependents:   mruby_mbed_web mirb_mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers compar.c Source File

compar.c

00001 /*
00002 ** compar.c - Comparable module
00003 **
00004 ** See Copyright Notice in mruby.h
00005 */
00006 
00007 #include "mruby.h"
00008 
00009 void
00010 mrb_init_comparable(mrb_state *mrb)
00011 {
00012   mrb_define_module(mrb, "Comparable");  /* 15.3.3 */
00013 }
00014