mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-07 16:06:05 +02:00
Add `Execute(List<string>...` method to interpreter Add escape sequence (`!!`) Fix `Evaluator.Calulate` method not correctly handling `-` and `+` prefixes
13 lines
196 B
C#
13 lines
196 B
C#
namespace YesNt.Interpreter.Enums
|
|
{
|
|
internal enum Priority
|
|
{
|
|
PreProcessing,
|
|
Highest,
|
|
VeryHigh,
|
|
High,
|
|
Normal,
|
|
Low,
|
|
VeryLow
|
|
}
|
|
} |