12 lines
95 B
Kotlin
12 lines
95 B
Kotlin
try
|
|
{
|
|
}
|
|
catch (e : Exception) {
|
|
println(1)
|
|
}
|
|
catch (e : IOException) {
|
|
println(0)
|
|
}
|
|
finally
|
|
{
|
|
} |