celtic / rubyex

a Ruby VM/interpreter

This URL has Read+Write access

rubyex / vm / process.h
100644 12 lines (8 sloc) 0.201 kb
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef PROCESS_H
#define PROCESS_H
 
#include <iostream>
#include "renvironment.h"
#include "reader.h"
#include "context.h"
 
RubyValue process(RubyEnvironment &, Reader &, Context *, Block *);
 
#endif