Giter Site home page Giter Site logo

voltframework's Introduction

VoltFramework

VoltFramework is a advanced framework for creating programming language. Got Linking,Encrypting,Parsing,Lexing,Interpriting,Compiling tools.

Modules: Linker, Crypto, IO, Memory, LanguageTools, LanguageToolsX

VoltFramework.Linker

Linker is a tool to combine a bunch of files/strings to one file/string.Linkers is used in programming languages,to link all code files to one. Linker in our framework is has all required functions for linking,unlinking files or strings. Linked or Unlinked file/string can be automatically encrypted/decrypted.

VoltFramework.Crypto

Easy encryption/decryption of strings with keys. Easy-to-use and fast methods.

VoltFramework.LanguageTools (LT)

soon...

VoltFramework.LanguageToolsX (LTX)

soon...

VoltFramework.PremiumLanguageTools (PLT)

soon...

Comparing LT & LTX

Feature LT LTX
Basic Parsing Yes Yes
Multiline Parsing No Yes
Custom Separators Yes No
Basic Lexing Yes Yes
Multiline Lexing No Yes
Minimum lines of code 50 6
Decryption support No Yes
Custom Token Check No Yes
.NET Compilation No Yes
Native Compilation No Soon
Token Parsing Yes Yes

Creating Programming Language with LT

soon...

Creating Programming Language with LTX

Creating programming language with LTX module is a more easier and less complicated.LTX has LanguageDescriber class,that used to handle Lexer,Parser for the language.So,lets see how to create a programming language:

            string code = "print('hello world')";

            StringParser sp = new StringParser(new string[] { "(", ")", ";", ",", "{", "}" });
            Lexer l = new Lexer();
            Parser p = new Parser();

            LanguageDescriber d = new LanguageDescriber(l, p, sp);
            d.DoExecuting();

voltframework's People

Contributors

qrai avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.