Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iitalics/jupiter
Experimental language with type inference, overloading and symbol identifiers
https://github.com/iitalics/jupiter
Last synced: 9 days ago
JSON representation
Experimental language with type inference, overloading and symbol identifiers
- Host: GitHub
- URL: https://github.com/iitalics/jupiter
- Owner: iitalics
- Created: 2015-04-05T08:09:26.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-02T19:48:35.000Z (over 9 years ago)
- Last Synced: 2023-04-05T02:11:18.148Z (over 1 year ago)
- Language: C++
- Size: 617 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Jupiter Compiler and Runtime
=====What is Jupiter?
-----
Jupiter is an multi-purpose, experimental language I've been building.
It uses a unique variation on the Hindley-Milner type inference system, with full support for overloaded methods.
The compiler targets the LLVM IR, for maximum speed and portability.Primary Aims
-----
* Simple yet powerful syntax and features for easy and rapid development
* Full type safety without verbose type annotations
* Expressivity through rich operator overloading
* Fast performanceRequirements
-----
Required to build and use the Jupiter compiler:* Unix-like environment (Unix or Cygwin)
* Clang (currently being developed with `clang++` version 3.4.2)
* LLVM toolchain (`llc` version 3.4.2)How to Build Jupiter
-----
`make jup` builds the Jupiter to LLVM IR compiler`make jupc` builds the toolchain for automating the build process
`make runtime` builds the runtime library
`make tests` builds Jupiter programs location in `examples/`
Running `make all` will build all of the above.