mirror of
				https://github.com/ASDjonok/OOP_IO-2x_2023.git
				synced 2025-10-27 05:29:23 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			237 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			237 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
| package OOP.Java.lab_6
 | |
| 
 | |
| import kotlin.time.Duration
 | |
| 
 | |
| class SynthPop(numberInAlbum: Int, trackName: String, feature: String?, duration: Duration): Track(numberInAlbum, trackName, feature, duration) {
 | |
|     override val style = "Synth-pop"
 | |
| } |