Show
Ignore:
Timestamp:
10/20/08 10:36:04 (13 months ago)
Author:
dr2chase
Message:

[interpreter] I think this fixes an init-order bug, where traits were initializing their functional methods too early -- overloadings would fail because not all types were ready

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ProjectFortress/hello.fss

    r1262 r2967  
    1919export Executable 
    2020 
    21 run(args:String...) = println "Hello, World!" 
     21run(args:String...) = do 
     22 println("Hello,"||" World!") 
     23 println("Hello, World"||'!') 
     24end 
    2225 
    2326end