Jack Darlington
01/12/2021, 12:47 PMexpect abstract class Thing {}actual class Thing {}actual abstract class Thing {}Stan Potemkin
01/12/2021, 6:19 PMabstractJack Darlington
01/12/2021, 11:55 PMSwift:class SwiftVersionOfSomething {fun test(): String {return "hi"}}abstract class KotlinVersionOfSomething {func test(): String {return "hi"}}expect <Object_With_function> SharedVersionOfSomething {fun test(): String}actual typealias SharedVersionOfSomething = KotlinVersionOfSomethingactual typealias SharedVersionOfSomething = SwiftVersionOfSomethingStan Potemkin
01/13/2021, 5:29 AMinterfaceJozef Matus
01/13/2021, 8:15 PMkpgalligan
01/13/2021, 9:16 PMkpgalligan
01/13/2021, 9:17 PMJack Darlington
01/14/2021, 3:59 PM