Show
Ignore:
Timestamp:
01/14/09 10:06:45 (10 months ago)
Author:
dr2chase
Message:

Synced simpleForeignImport with compiler example, added heap boost to fortress script

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ProjectFortress/not_passing_yet/simpleForeignImport.fss

    r3303 r3309  
    1717 
    1818component simpleForeignImport 
    19 import java com.sun.fortress.nativeHelpers.{simplePrintln.nativePrintln as something} 
     19import java com.sun.fortress.nativeHelpers.{simplePrintln.nativePrintln as jPrintln} 
    2020export SimpleExecutable 
    2121 
    2222run(args:String...) = do 
    23  something("Hello, World!") 
     23 jPrintln("Hello, World!") 
    2424end 
    2525