Skip to content

Instantly share code, notes, and snippets.

View muasx88's full-sized avatar
🎯
Focusing

Muas muasx88

🎯
Focusing
View GitHub Profile
@whoishusni
whoishusni / App.kt
Last active June 7, 2020 11:30
Little Code Snippet How To Use Coroutine In Kotlin
//Kotlin Coroutine Code Snippet Made By Husni
//Import Dependency
import kotlinx.coroutines.*
fun income(income : Int) : Int {
return income
}
fun payTax(tax : Int) : Int {