forked from mruby/mruby
-
Notifications
You must be signed in to change notification settings - Fork 0
mrb_define_const
cremno edited this page Sep 11, 2013
·
2 revisions
| Declaration | Definition |
|---|---|
| mruby.h | variable.c |
void mrb_define_const(mrb_state *mrb, struct RClass *klass, const char *name, mrb_value obj);Defines a constant under klass.
- mrb: mruby VM state
- klass: outer class
- name: name of the constant
- obj: value of the constant
None.