Skip to content

Instantly share code, notes, and snippets.

View TacticalBFG's full-sized avatar

Marco TacticalBFG

  • Vulk
View GitHub Profile
@TacticalBFG
TacticalBFG / lexer.cpp
Created July 14, 2020 21:21 — forked from arrieta/lexer.cpp
Simple C++ Lexer
// A simple Lexer meant to demonstrate a few theoretical concepts. It can
// support several parser concepts and is very fast (though speed is not its
// design goal).
//
// J. Arrieta
// (C) 2018 Nabla Zero Labs
#include <string>
class Token {