Kotlin online IDE & code editor for technical interviews

Running Kotlin 1.6 – IntelliSense is enabled

Experience the Kotlin IDE yourself

See just how easy and intuitive CoderPad Interview is to use below.

Launch the environment

Guidelines to use Kotlin in this online IDE

Our Kotlin environment is built on top of our Java environment, giving you access to any libraries we have installed there, too.

For example, to run a JUnit test in Kotlin:

import org.junit.*;
import org.junit.runner.*;

fun main(args: Array<String>) {
  JUnitCore.main("Solution");
}

 class Solution {
  @Test
  fun testNoop() {
    Assert.assertTrue(true);
  }
}Code language: Kotlin (kotlin)

Need a better way to interview candidates? Give CoderPad a try.