Compiler
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
namespace Rextester
{
enum Lex
{
NUM,
PLUS,
MINUS,
MUL,
DIV,
END,
}
struct Token
{
}
interface ILexer
{
Token GetToken();
}
class ExpressionSolver
{
}
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello, world!");
}
}
}
|
run
| edit
| history
| help
|
0
|
|
|