This small project is used just to validate and show plugin's work.
You can find DecompileBitcodePlugin connected and configured in build.gradle.kts. It provides decompileBitcode task that can be executed from this (i.e. example) directory in the following way:
../gradlew :example:decompileBitcodeThen you can find generated bitcode of Main.kt in the build/bitcode/bitcode.ll file.
If you'd like to run Main.kt just as a Kotlin/Native program, execute one of the following Gradle tasks:
../gradlew :example:runDebugExecutableLinuxX64
../gradlew :example:runReleaseExecutableLinuxX64and check the console's output.