Metadata-Version: 1.1
Name: stacker-lang
Version: 0.1.0
Summary: A quick and dirty attempt at a stack oriented language
Home-page: https://github.com/djds23/stacker-lang
Author: Dean Silfen
Author-email: dean.silfen@gmail.com
License: MIT
Description: Stacker-lang
        ============
        
        A quick and dirty attempt at a stack oriented language
        ``````````````````````````````````````````````````````
        
        .. image:: https://travis-ci.org/djds23/stacker-lang.svg?branch=master
            :target: https://travis-ci.org/djds23/stacker-lang
        
        To test, run: ``python -m unittest discover tests --verbose``
        
        Install with: ``python setup.py install``
        
        This should install the bin ``stacker-repl`` in your current environment.
        
        The repl will look something like this::
        
           =>push 9
           [9]
           =>push 10
           [10, 9]
           =>push 1000
           [1000, 10, 9]
           =>rot void
           [10, 9, 1000]
           =>rot void
           [9, 1000, 10]
           =>drop void
           [1000, 10]
        
        
Keywords: stacker lang programming language stack
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
