c# build script

This commit is contained in:
2023-12-22 21:36:43 +06:00
parent 5a4b2ce3f6
commit eed8d26712
10 changed files with 73 additions and 30 deletions

View File

@@ -1,5 +1,12 @@
class NumericExpression : IExpression
{
double N;
internal void Init!(double n){
N = n;
}
internal NumericExpression(){ N=Math.NaN; }
internal override double Calculate() => N;
}