source: EcnlProtoTool/trunk/mruby-1.2.0/src/enum.c@ 270

Last change on this file since 270 was 270, checked in by coas-nagasima, 7 years ago

mruby版ECNLプロトタイピング・ツールを追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-csrc
File size: 195 bytes
Line 
1/*
2** enum.c - Enumerable module
3**
4** See Copyright Notice in mruby.h
5*/
6
7#include "mruby.h"
8
9void
10mrb_init_enumerable(mrb_state *mrb)
11{
12 mrb_define_module(mrb, "Enumerable"); /* 15.3.2 */
13}
14
Note: See TracBrowser for help on using the repository browser.