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

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   auto tokens = uc.ExpressionTokens();
   auto alphanumericToken = tokens[TokenType::AlphaNumeric];

   cout << "The regex for alphanumeric tokens is:" << endl;
   cout << alphanumericToken.Regex() << endl;
}