Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created January 15, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shigemk2/34c3174669b555f3f2ec to your computer and use it in GitHub Desktop.
Save shigemk2/34c3174669b555f3f2ec to your computer and use it in GitHub Desktop.
val h = "hello".charAt(0)
println(h)
val hello = "hello"
println(hello.charAt(4))
println(hello(4))
println("hello"(0))
println("hello"(4))
println("hello".apply(1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment