is it normal there is no option to run `main` on n...
# multiplatform
e
is it normal there is no option to run
main
on native?
e
no, native binaries are built for a specific entry point
e
ok, I had the option when running the test(s), I supposed I should have had the same for running a plain
main
..
e
for tests, AGP configures the kotlin compiler to generate an entrypoint which reads command-line options to determine behavior (such as listing tests or running specific ones). but the test binary is always going through that compiler-generated
main
👍 1