Parser stuff

This commit is contained in:
Sen 2023-02-02 14:05:53 +00:00
parent 7acaa9df76
commit abbd4a74ef
25 changed files with 1044 additions and 32 deletions

16
TypeException.cs Normal file
View file

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShintenScript
{
public class TypeException : Exception
{
public TypeException(string message) : base(message)
{
}
}
}