This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.koin.dsl.bind | |
import org.koin.dsl.koinApplication | |
import org.koin.dsl.module | |
import kotlin.test.Test | |
import kotlin.test.fail | |
private fun module(useB: Boolean) = module { | |
single { AImpl() } | |
single { BAndAImpl() } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Computer Information: | |
Manufacturer: ASUSTeK COMPUTER INC. | |
Model: TUF GAMING X570-PLUS (WI-FI) | |
Form Factor: Desktop | |
No Touch Input Detected | |
Processor Information: | |
CPU Vendor: AuthenticAMD | |
CPU Brand: AMD Ryzen 9 3900X 12-Core Processor | |
CPU Family: 0x17 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.*; | |
record Data(String type, float amount, int quantity) { | |
} | |
record Datav2(float amount, int quantity) { | |
} | |
class ListyMain { |