view runtime/integer.h @ 24:8b2b3f4a2a58

Some fixes to parser_old.rhope
author Mike Pavone <pavone@retrodev.com>
date Wed, 24 Jun 2009 23:56:49 -0400
parents 31f8182f3433
children 640f541e9116
line wrap: on
line source

#ifndef _INTEGER_H_
#define _INTEGER_H_

#include "object.h"
#include "func.h"

OBegin
	int32_t num;
Object(Int32)

MethodDef(_PL_,Int32)
MethodDef(_MN_,Int32)
MethodDef(_LT_,Int32)
MethodDef(_GT_,Int32)

object * make_Int32(int32_t val);

#endif //_INTEGER_H_