Artifact Content
Not logged in

Artifact d03287608e84fd60f8458266dda8d06245b287f1


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