Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 10th, 2012  |  syntax: None  |  size: 0.25 KB  |  hits: 6  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Scala slow builds: development approaches to avoid
  2. object foo {
  3.   def z: Int = 8
  4. }
  5.  
  6. object foo2 {
  7.   class A { ... }
  8. }
  9.        
  10. object foo {
  11.     class A {
  12.         type F = Float
  13.     }
  14.     def z: Int = 8
  15. }
  16.        
  17. object bar {
  18.     def run { println(foo.z) }
  19. }