0.1.14-5 • Published 6 years ago

astrolang v0.1.14-5

Weekly downloads
2
License
Apache 2.0
Repository
github
Last release
6 years ago

Astro Programming Language

hound Build Status Coverage Status Maintainability Test Coverage Maintained License

Work in Progress :construction:

Current Version: 0.1.14 astro screenshot

Installation

If you don't have node installed already, download and install it here.

USERS

  • Install astro by typing npm i -g astrolang in the terminal.
  • You can start using astro with astro -h.

DEVELOPERS

  • Clone repository ➡ git clone https://github.com/appcypher/astro.git.
  • Move to astro directory ➡ cd astro.
  • Install necessary dependencies ➡ npm i.
  • Run tests ➡ npm run test:compiler.

What is Astro?

Astro is a fullstack multi-paradigm programming language designed for high-performance numerical-computing and web applications.

  • statically-typed language that
  • compiles to native code and WebAssembly,
  • has no GC,
  • has a syntax similar to Python,
  • provides full type inference, and
  • has first-class support for data-race-free concurrency.

Why create yet another programming language?

The language creator had a set of requirements (listed above) not met by any single language. Although, the project started as an educational effort, it later shaped into a language designed to meet those requirements.

SIMD, threads and direct access to Web APIs are planned for WebAssembly. These and the proposed GPU Compute standards will make the web a desirable HPC target in the near future. Astro makes developing high-performance web and native apps seamless, easier and less frustrating.

Astro has no runtime Garbage Collector (GC) as it is expected to be fast enough to develop games, scientific simulations and other real-time software. This can make it suitable for embedded software development even though it's not a goal.

In addition, Astro makes several design decisions that benefit numerical computing applications. For example, it has builtin support for matrices, vectorization, unicode identifiers, etc.

In order to match up with the expressiveness and productivity level of dynamic programming languages, Astro adds full type inference, and several other high-level language features that increase productivity. It feels like a scripting language for the most part. A typical Astro program looks very much like its Python translation.

Python

def times(a, b):
    sum = a
    for i in range(b):
        sum += sum
    return sum

Astro

fun times(a, b):
    var sum = a
    for i in 1..b:
        sum += sum
    return sum

Finally, seeing as CPU manufacturers are favoring multi-core design over transistor shrinkage, we believe making concurrency (and parallelism) a major aspect of the language development is beneficial to the type of applications that the language targets.

Astro has builtin facilities for writing concurrent programs, in the form of fibers, a CSP-based lightweight threading model, with the guarantee that the programs you write won't have data races.

Why not just use exactly Python syntax or try to be compatible with Python?

Python is a really dynamic programming language and there have been several attempts in the past to compile it AOT to native code. We don't want to reinvent the wheel since there are lessons to learn from old wheels. Python cannot be fully-inferred at compile-time without performance trade-offs.

More importantly Astro introduces some concepts that Python doesn't have and probably never will.

What is Astro automatic memory management like? Rust's or Swift's?

Neither. Astro uses a special Automatic Reference Counting (ARC) system that automatically breaks reference cycles, so its unlike Swift's ARC which requires some special annotations in cases like that. It's also unlike Rust current memory management model as it puts lesser restrictions on how references are moved around while still being memory safe.

Astro simply, stays out of your way, lets you write your code like you would in any other garbage-collected language.

How close is Astro to being ready for production use?

Not close. Astro is at its infancy, there are several tasks —which you can find below— to complete before it becomes usable.

For now, Astro can only compile its source code to ast format. It is not ready for even the simplest application.

How will Astro tooling be like?

Astro is meant for interactive high-productivity usage therefore a visual REPL, for visualizing and introspecting different kinds of data, is planned. It will also have a set of language tools for making editor support easier.

Incremental compilation is a goal as well since the language requires a lot of complex compile-time computations like control flow analysis and escape analysis.

Where can I read about the language?

There is no proper documentation for the language yet since the main implementation is still under active development, but you can find an up-to-date summary of language features here.

What are the important tasks to complete?

  • ~Improve project structure~
  • ~Add automated unit testing and coverage reports~
  • ~Redesign and remove certain inconsistencies in language syntax~
  • Complete parser implementation
  • Implement basic semantic analysis
  • Create ambiguity finders for inheritance, multiple dispatch, etc.
  • Implement type inference and garbage collection using program flow analysis
  • Add wasm code generation
  • Incorporate incremental compilation
  • Build REPL
  • Create specialized error handler

What are the technologies used?

  • wast2wasm - a tool for translating WebAssembly s-expression format to its binary-encoded format.

Want to contribute to the project?

Please read the code of conduct and contribution guidelines. We welcome your ideas and contributions.

Do you have an unanswered question?

Please open an issue and ask questions, offer to help, point out bugs or suggest features.

Other interesting new languages that compile to WebAssembly

  • Forest - a multi-syntax functional programming language.
  • AssemblyScript - a new compiler targeting WebAssembly while utilizing TypeScript's syntax and node's vibrant ecosystem.
  • WAlt - an alternative syntax for WebAssembly text format. It's an experiment for using JavaScript syntax to write to as 'close to the metal' as possible.

Project folder structure

.
├── .codeclimate.yml
├── .coveralls.yml
├── .eslintignore
├── .eslintrc.json
├── .gitattributes
├── .gitignore
├── .hound.yml
├── .travis.yml
├── CHANGELOG.md
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── MVP.md
├── README.md
├── bin
│   └── astro.js
├── designs
│   └── astro-prompt-design.txt
├── docs
│   ├── README.md
│   ├── compiler
│   │   ├── README.md
│   │   ├── asts-old.md
│   │   ├── compiler.md
│   │   ├── old-compiler-notes.ast
│   │   ├── parser-rewrite.ast
│   │   └── semantic-analysis.md
│   └── language
│       ├── README.md
│       ├── development.ast
│       ├── feature-proposals.md
│       └── summary.ast
├── media
│   └── images
│       └── astro-syntax.png
├── package-lock.json
├── package.json
├── samples
│   ├── README.md
│   ├── fibonacci
│   │   └── fibonacci.ast
│   ├── fizzbuzz
│   │   └── fizzbuzz.ast
│   ├── hello-world
│   │   └── hello-world.ast
│   ├── miscellaneous
│   │   └── preview.ast
│   ├── normalize
│   │   └── normalize.ast
│   ├── product
│   │   └── product.ast
│   ├── rosetta
│   │   ├── 100-doors.ast
│   │   ├── 15-puzzle-game.ast
│   │   ├── 99-bottles.ast
│   │   ├── abc-problem.ast
│   │   ├── accumulator-factory.ast
│   │   ├── address-of-a-variable.ast
│   │   ├── averages-root-mean-square.ast
│   │   ├── ceasar-cipher.ast
│   │   ├── comma-quibbling.ast
│   │   ├── concurrent-computing.ast
│   │   ├── conditional-structures.ast
│   │   ├── integer-comparison.ast
│   │   ├── maximum-triangle-path-sum.ast
│   │   ├── mean.ast
│   │   ├── number-reversal.ast
│   │   ├── queue-usage.ast
│   │   ├── read-a-file-line-by-line.ast
│   │   ├── sha-1.ast
│   │   ├── sorting-algorithms-merge-sort.ast
│   │   ├── string-comparison.ast
│   │   ├── sum-of-squares.ast
│   │   └── tokenize-a-string.ast
│   ├── sum
│   │   └── sum.ast
│   ├── vectorized
│   │   └── vectorized.ast
│   └── wordcount
│       └── wordcount.ast
├── src
│   ├── boilerplate
│   │   └── parser-boilerplate.js
│   ├── compiler
│   │   ├── README.md
│   │   ├── all-test.js
│   │   ├── codegen
│   │   │   ├── ast2llvm.js
│   │   │   └── ast2wast.js
│   │   ├── semantics
│   │   │   └── scope.js
│   │   ├── syntax
│   │   │   ├── grammar-and-ast.peg
│   │   │   ├── lexer-test.js
│   │   │   ├── lexer.js
│   │   │   ├── parser-old.js
│   │   │   ├── parser-test.js
│   │   │   └── parser.js
│   │   └── utils
│   │       ├── index-test.js
│   │       └── index.js
│   ├── stdlib
│   │   └── README.md
│   └── support
│       ├── README.md
│       └── editors
│           ├── atom
│           │   ├── README.md
│           │   ├── grammars
│           │   │   └── astro.cson
│           │   ├── package.json
│           │   └── snippets
│           │       └── snippets.cson
│           ├── sublime-text
│           │   └── astro.sublime-syntax
│           └── vscode
│               ├── CHANGELOG.md
│               ├── README.md
│               ├── language-configuration.json
│               ├── package.json
│               ├── syntaxes
│               │   └── astro.tmLanguage.json
│               ├── tsconfig.json
│               └── vsc-extension-quickstart.md
└── tests
    ├── README.md
    ├── compiler
    │   ├── syntax
    │   │   ├── declarations.spec.js
    │   │   └── misc.spec.js
    │   └── utils
    │       └── utils.spec.js
    └── samples
        └── fibonacci.spec.js
0.1.14-5

6 years ago

0.1.14-4

6 years ago

0.1.14-3

6 years ago

0.1.14-2

6 years ago

0.1.14-1

6 years ago

0.1.14

6 years ago