Created
January 27, 2015 17:32
-
-
Save artem-zinnatullin/cfdb32ee1beae23c6c27 to your computer and use it in GitHub Desktop.
Hello Kotlin On Android
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
package nice.is.kotlin | |
import android.content.Context | |
import android.widget.Toast | |
class HelloKotlinOnAndroid { | |
public fun yo(context: Context, text: String) { | |
Toast.makeText(context, text, Toast.LENGTH_LONG).show(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment