PageRenderTime 33ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 0ms

/samples/inference/vars-fromcall.ooc

http://github.com/nddrylliog/oc
Unknown | 13 lines | 9 code | 4 blank | 0 comment | 0 complexity | cb500b976d934e5dd703f4cfed63e859 MD5 | raw file
  1. getInt: func -> int { 42 }
  2. main: func {
  3. a := getInt()
  4. b := a
  5. c := b
  6. d := c
  7. e := d
  8. f := e
  9. }