view runtime/integer.h @ 59:4f1ae6eb71d8

Use replicated switch statement for returns and late-bound calls
author Mike Pavone <pavone@retrodev.com>
date Thu, 08 Oct 2009 22:54:30 -0400
parents d2f9b0a9403d
children 04baa003de5a
line wrap: on
line source

#ifndef _INTEGER_H_
#define _INTEGER_H_

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

OBegin
	int32_t num;
Object(Int32)

object * make_Int32(int32_t val);

#endif //_INTEGER_H_