rename Main to TestMain

This commit is contained in:
2023-05-29 13:46:40 -06:00
parent 1910210fb9
commit 00d03779fe
3 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
-lib kiss
-cp src
--main tct.Main
--main tct.TestMain
--interp

View File

@@ -1,7 +1,7 @@
package tct;
class Main {
class TestMain {
static function main() {
Main_.main();
TestMain_.main();
}
}