John O'Reilly
10/18/2021, 3:45 PMMainScope .....looking to test it out by calling from a main function in jvmMain source.....is there recommended approach to doing this?John O'Reilly
10/18/2021, 3:45 PMmain
val dispatcher = Executors
        .newSingleThreadExecutor()
        .asCoroutineDispatcher()
    Dispatchers.setMain(dispatcher)John O'Reilly
10/18/2021, 3:46 PMJohn O'Reilly
10/18/2021, 4:28 PMMainScope there!