Use var instead of let for variables

This commit is contained in:
Stone_Red
2026-03-04 14:55:09 +01:00
parent a5f521912e
commit d4cc1d1c28
10 changed files with 69 additions and 59 deletions
@@ -62,7 +62,7 @@ public class ConsoleStatementsTests
List<string> lines =
[
"let value = %read_line",
"var value = %read_line",
"${value}"
];
@@ -95,7 +95,7 @@ public class ConsoleStatementsTests
List<string> lines =
[
"let value = %read_key"
"var value = %read_key"
];
_ = Task.Run(() => interpreter.Execute(lines, true));
@@ -108,3 +108,4 @@ public class ConsoleStatementsTests
StringAssert.Contains(output.ToString(), "Terminated by external process");
}
}