``` [Sun May 29 23:33:31 ashwin.amit@Ashwin-Amit:/...
# getting-started
a
Copy code
[Sun May 29 23:33:31 ashwin.amit@Ashwin-Amit:/tmp ]
$: kotlinc -version
info: Kotlin Compiler version 1.0.1-2
[Sun May 29 23:42:06 ashwin.amit@Ashwin-Amit:/tmp ]
$: kotlinc
Welcome to Kotlin version 1.0.1-2 (JRE 1.8.0_77-b03)
Type :help for help, :quit for quit
>>> fun a(b: Int) {
...    b = 5
...    println(b)
... }
>>> a(1)
5