Files
YesNt-Interpreter/YesNt.Interpreter/Enums/Priority.cs
T
Stone_Red 510d2d910c Add more statements and bug fixes
- Add `Execute(List<string>...` method to interpreter
- Add escape sequence (`!!`)
- Fix `Evaluator.Calulate` method not correctly handling `-` and `+` prefixes
2022-03-31 13:01:31 +02:00

13 lines
196 B
C#

namespace YesNt.Interpreter.Enums
{
internal enum Priority
{
PreProcessing,
Highest,
VeryHigh,
High,
Normal,
Low,
VeryLow
}
}