fork download
  1. object Main extends App {
  2. // your code goes here
  3. val f:(()=>String)=()=>"x"*9
  4.  
  5. println(f())
  6. println(f().length == """()=>"x"*9""".length)
  7. }
Success #stdin #stdout 0.38s 4382720KB
stdin
Standard input is empty
stdout
xxxxxxxxx
true