Skip to content

Instantly share code, notes, and snippets.

@JSpiner
Last active November 14, 2018 03:34
Show Gist options
  • Save JSpiner/93385274e36f2c5643c3b8b853ef6e1d to your computer and use it in GitHub Desktop.
Save JSpiner/93385274e36f2c5643c3b8b853ef6e1d to your computer and use it in GitHub Desktop.
class Test {
fun testFunc(view: WebView, url: String): Boolean {
println("hi!")
for(i in 0..10) {
println("*")
}
}
fun testFunc2(view: WebView?, url: String): Boolean {
println("hi!")
for(i in 0..10) {
println("*")
}
}
fun testFunc3(view: WebView?, url: String): Boolean {
println("hi!")
for(i in 0..10) {
println("*")
}
}
fun testFunc4(view: WebView?, url: String): Boolean {
println("hi!")
for(i in 0..10) {
println("*")
}
}
fun testFunc5(view: WebView, url: String): Boolean {
println("hi!")
for(i in 0..10) {
println("*")
}
}
fun testFunc6(view: WebView?, url: String): Boolean {
println("hi!")
for(i in 0..10) {
println("*")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment