Guest User

Untitled

a guest
Jul 26th, 2019
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.24 KB | None | 0 0
  1. fun main() {
  2.     TestDuplicates().doSomething()
  3. }
  4.  
  5. class TestDuplicates {
  6.  
  7.     fun doSomething() {
  8.         print("doSomething()")
  9.     }
  10.  
  11.     fun doSomething(optional: String = "") {
  12.         print("doSomething($optional)")
  13.     }
  14. }
Add Comment
Please, Sign In to add comment