Artifact Content
Not logged in

Artifact 50a2d18cbf87ea263c98394fc6887b7eb6b6e842


     1  -----------------------------------------------------------------------------
     2    Polemy 0.1.0
     3                                                   by k.inaba (www.kmonos.net)
     4                                                                 Nov 24, 2010
     5  -----------------------------------------------------------------------------
     6  
     7  [How to Build]
     8  
     9    - Install DMD
    10        http://www.digitalmars.com/d/2.0/changelog.html
    11      Version 2.050 is recommended. Older or newer version may not work.
    12  
    13    - Build
    14        (for Windows) Run build.bat
    15        (for Unix) Run sh build.sh
    16        or use your favorite build tools upon main.d and polemy/*.d.
    17  
    18    Then you will get the executable "polemy" in the "bin" directory.
    19  
    20  
    21  
    22  [License]
    23  
    24    d2stacktrace/*
    25  
    26      is written by Benjamin Thaut and licensed under 2-clause BSD License.
    27      See http://3d.benjamin-thaut.de/?p=15 for the detail.
    28  
    29      (this package is used only for enabling stack-traces during printing exceptions;
    30       it is not used for release builds.)
    31  
    32    tricks/*
    33    polemy/*
    34    main.d
    35  
    36      All the other parts are written by Kazuhiro Inaba and
    37      licensed under NYSL 0.9982 ( http://www.kmonos.net/nysl/ ).
    38  
    39  
    40  
    41  [How to Use]
    42  
    43    > polemy
    44        starts REPL
    45  
    46    > polemy foo.pmy
    47        executes foo.pmy
    48  
    49    > polemy -l foo.pmy
    50        after executing foo.pmy, starts REPL
    51  
    52    > polemy -l foo.pmy -l bar.pmy buz.pmy
    53        executes foo.pmy, bar.bmy, and then buz.pmy
    54  
    55  
    56  
    57  [Language Reference]
    58  
    59    See doc/index.html (in Japanese)
    60