Giter Club home page Giter Club logo

leya's Introduction

leya 0.0.0.3

The Leya programming language is a high-level imperative functional programming language. Leya works by being built off a base of syscalls and basic functionality that resides within elements of different arrays. Everything in Leya consists of arrays atop arrays. Each array is a command followed by parameters.

Future Plans

You make look at the localized TODO.MD list and CHANGELOG.MD in order to get a better idea of the direction of the language, and what we are working on at this time. However, here is a list of the things that are exciting and planned for this language:

  • Command parsing (Objective #1)
  • Store the currently defined lya in memory. The memory of course also needs to accessible, and hold the number of bytes for each defined alias.
  • JIT Compilation. Compile future data while executing old data.
  • Multiple Dispatch. Function lookups are defined with the types of their arguments.
  • Syscalls. This language can act as an interface to standard kernel calls. This will be the backbone to structuring the language in itself. For example, consider the base defining the following print function:
function print x string
  define int n len x
  syscall 1 1 x n
end

The leya compiler handles the memory for us, that is the primary objective of the language itself. The language stores definitions in aliased portions of stack. Here we pass those syscalls in order to call the future _scall: code:

_scall:
mov rax, arg1
mov rdi, arg2
mov rsi, arg3
mov rdx, arg4
syscall

Of course, there is also support for basic operations.

Contributing

There are so many different ways that you can help better the Leya language. All of the following could help:

  • Try Leya
  • Learn Leya
  • Share Leya
  • Report bugs/issues
  • Commit code!
    You may read more on contributing to the Leya language in CONTRIBUTING.MD

leya's People

Contributors

emmaccode avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

leya's Issues

Links not working

TODO.MD and CHANGELOG.MD links in your README.md don't lead to anywhere! :)

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.