public
Description: AcotieScript is new program language. おうっふー!
Homepage:
Clone URL: git://github.com/yappo/AcotieScript.git
mattn (author)
Tue May 19 01:59:40 -0700 2009
yappo (committer)
Tue May 19 03:41:58 -0700 2009
name age message
file .gitignore Wed May 13 20:37:49 -0700 2009 first commit [大沢 和宏]
file Makefile Wed May 13 20:37:49 -0700 2009 first commit [大沢 和宏]
file Makefile.w32 Tue May 19 03:41:58 -0700 2009 add makefile for mingw32. Signed-off-by: Kazuh... [mattn]
file README Wed May 13 20:37:49 -0700 2009 first commit [大沢 和宏]
directory examples/ Wed May 13 20:37:49 -0700 2009 first commit [大沢 和宏]
file lex.l Tue May 19 03:41:57 -0700 2009 use yy_scan_string to store string from argumen... [mattn]
file parser.y Tue May 19 03:41:57 -0700 2009 use yy_scan_string to store string from argumen... [mattn]
README
This program is actiescript.

INSTALLATION

    % make
    % cp acotiescript /usr/bin

EXAMPLE

    #!/usr/bin/acotiescript
    print "hello!\n"
    print 'hello!'
    print "hello!\n" #    this is comment
    print "hello!\n" //   this is comment
    print "hello!\n" """  this is comment
    print "hello!\n" '''  this is comment
    print "hello!\n" :REM this is comment

    //this is comment
    #this is comment
    /*this is comment*/
    """this is comment
    '''this is comment
    <!--this is comment-->
    REM this is comment