ceevlang/src
Ruben Dahl c4b515491a
Parsing 95% complete, only missing string parsing
2023-01-26 20:52:43 +01:00
..
README.md Fixed formatting in the readme 2023-01-15 19:52:12 +01:00
colors.cc Started work on the CeeV language. 2023-01-13 20:21:15 +01:00
colors.h Started work on the CeeV language. 2023-01-13 20:21:15 +01:00
lang.cc Parsing 95% complete, only missing string parsing 2023-01-26 20:52:43 +01:00
lang.h Parser is now working, just need functionality. 2023-01-26 16:51:56 +01:00

README.md

CeeVLang Documentation

Includes

#include "colors.h"
#include <deque>
#include <filesystem>
#include <fstream>
#include <iostream>
#include <map>
#include <sstream>
#include <string>

Functions

int read_file(std::deque<std::string> args);
  • Param: std::deque<std::string> args - The arguments from main() in ceev.cc, with used values stripped out.

  • Returns: int exit_code

  • Reads the file and outputs it. Currently a work in progress.