Changes between Version 31 and Version 32 of FortressStartHere

Show
Ignore:
Timestamp:
05/07/09 12:57:24 (7 months ago)
Author:
sukyoungryu
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FortressStartHere

    v31 v32  
    2222 
    2323{{{ 
     24#!fss 
    2425export Executable                                                                                                                        
    2526                                                                                                                                         
     
    179180Arrays can be created as literals 
    180181{{{ 
     182#!fss 
    181183x = [ 1 2 3] 
    182184}}} 
    183185or by calling one of the factory methods:  
    184186{{{ 
     187#!fss 
    185188A = array[\ZZ32\](7) 
    186189}}} 
     
    189192Arrays have to be initialized before elements can be read from them. 
    190193{{{ 
     194#!fss 
    191195A.fill(0) 
    192196}}}