#include <iostream>
#include "uCalc.h"

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   auto tokens = uc.ExpressionTokens();
   auto alphaToken = tokens.ByType(TokenType::AlphaNumeric);

   cout << "Name: " << alphaToken.Name() << endl;
   cout << "Regex: " << alphaToken.Regex() << endl;
}