Alastair Donaldson (@afd_icl) 's Twitter Profile
Alastair Donaldson

@afd_icl

Professor of Programming Languages at Imperial College London

ID: 2301432072

linkhttp://multicore.doc.ic.ac.uk calendar_today20-01-2014 13:48:59

3,3K Tweet

2,2K Takipçi

429 Takip Edilen

Alastair Donaldson (@afd_icl) 's Twitter Profile Photo

Kotliners: what d'you think this prog should print when passed empty args? fun getText(arg: Int): String { return if (arg == 0) { "A" } else if (arg == 1) { "B" } else { "C" } + "\n" } fun main(args: Array<String>) { println(getText(args.size) + "!!!") }