Plot Script
|
#include <string>
#include <sstream>
#include <iostream>
#include <fstream>
#include "interpreter.hpp"
#include "semantic_error.hpp"
Functions | |
void | prompt () |
std::string | readline () |
void | error (const std::string &err_str) |
void | info (const std::string &err_str) |
int | eval_from_stream (std::istream &stream) |
int | eval_from_file (std::string filename) |
int | eval_from_command (std::string argexp) |
void | repl () |
int | main (int argc, char *argv[]) |
void error | ( | const std::string & | err_str | ) |
int eval_from_command | ( | std::string | argexp | ) |
int eval_from_file | ( | std::string | filename | ) |
int eval_from_stream | ( | std::istream & | stream | ) |
void info | ( | const std::string & | err_str | ) |
int main | ( | int | argc, |
char * | argv[] | ||
) |
void prompt | ( | ) |
std::string readline | ( | ) |
void repl | ( | ) |