blob: 0032fc859245ee435849d00db576e520f02398f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
** compar.c - Comparable module
**
** See Copyright Notice in mruby.h
*/
#include <mruby.h>
void
mrb_init_comparable(mrb_state *mrb)
{
mrb_define_module(mrb, "Comparable"); /* 15.3.3 */
}
|