    yet another lexical preprocessor
     __    __    _____ _____
    /\ \  /\ \  /\  _  \  _  \
    \ \ \_\/  \_\/  \_\ \ \_\ \
     \ \__  /\____/\  __/\  __/
      \/_/\_\/___/\ \_\/\ \_\/
         \/_/      \/_/  \/_/

    ($($\y:u.\m.\...(m y($\C.\p.(r)e p)($\ro.(ce)s)))so r)
    ___         __________________________________
    ___ VERSION __________________________________

    yupp        1.1c2
                2018-05-12

    Python      2.7
    ___             ______________________________
    ___ WHAT IS IT? ______________________________

    yupp is a lexical preprocessor for C/C++, Python and
    <you name it> languages.

    Read more:

        https://github.com/in4lio/yupp/tree/master/doc/

    ___             ______________________________
    ___ HELLO WORLD ______________________________

    #include <stdio.h>

    ($set greeting "Hello ($0)!\n")

    int main( void )
    {
        printf( ($greeting (`world)) );
        return 0;
    }

    ___                 __________________________
    ___ HELLO IN PYTHON __________________________

    # coding: yupp

    ($set greeting '!dlrow olleH')

    if __name__ == '__main__':
        print ($reversed greeting)

    ___         __________________________________
    ___ LICENSE __________________________________

    Please see the file called "LICENSE".
