Multiple entry points found (AJTERR10006)
| Product(s) | Karo.NET compiler |
|---|
Description
Multiple entry points were specified in a compilation unit.
test::exampleClass {
#entryPoint;
|| { }
#entryPoint;
// ^^^^^^^^^^^^ A second entry point is specified here.
|| { }
}
How can I resolve this error?
Specify only one entrypoint.