fork download
  1. fun main() {
  2. val numberOfAdults = 20
  3. val numberOfKids = 30
  4. val total = numberOfAdults + numberOfKids
  5. println("The total party size is: $total")
  6. }
Success #stdin #stdout 0.12s 38100KB
stdin
Standard input is empty
stdout
The total party size is: 50