fork(1) download
  1. object Hoge {
  2. def hoge () = "hoge"
  3. }
  4.  
  5. object Main extends App {
  6. println(Hoge.hoge)
  7. }
Success #stdin #stdout 0.37s 382080KB
stdin
Standard input is empty
stdout
hoge