All Projects → jingle-lang → jingle

jingle-lang / jingle

Licence: MPL-2.0, BSD-3-Clause licenses found Licenses found MPL-2.0 LICENSE BSD-3-Clause LICENSE_STDLIB
🔔 Jingle is a dynamically-typed, multi-paradigm programming language designed for humans and machines.

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to jingle

Corium
Corium is a modern scripting language which combines simple, safe and efficient programming.
Stars: ✭ 18 (-47.06%)
Mutual labels:  interpreter, virtual-machine, jit-compiler
embed
An embeddable, tiny Forth interpreter with metacompiler.
Stars: ✭ 80 (+135.29%)
Mutual labels:  interpreter, virtual-machine
Animach
Scheme语言实现和运行时环境 / A Scheme runtime & implementation
Stars: ✭ 45 (+32.35%)
Mutual labels:  interpreter, virtual-machine
thislang
A subset of javascript implemented in that subset of javascript. Yes, it can run itself.
Stars: ✭ 31 (-8.82%)
Mutual labels:  interpreter, virtual-machine
Compiler-written-in-Haskell
A Turing complete language 😉
Stars: ✭ 31 (-8.82%)
Mutual labels:  llvm, jit-compiler
ciao
Ciao is a modern Prolog implementation that builds up from a logic-based simple kernel designed to be portable, extensible, and modular.
Stars: ✭ 190 (+458.82%)
Mutual labels:  interpreter, virtual-machine
openj9
Eclipse OpenJ9: A Java Virtual Machine for OpenJDK that's optimized for small footprint, fast start-up, and high throughput. Builds on Eclipse OMR (https://github.com/eclipse/omr) and combines with the Extensions for OpenJDK for OpenJ9 repo.
Stars: ✭ 2,973 (+8644.12%)
Mutual labels:  interpreter, virtual-machine
Tagha
Minimal, low-level, fast, and self-contained register-based bytecode virtual machine/runtime environment.
Stars: ✭ 101 (+197.06%)
Mutual labels:  interpreter, virtual-machine
clover2
Clover2 can be used as shell. The completion is powerfull like IDE. Also clover2 is a Ruby-like compiler language with static type like Java. This is high performnace. Please see the wiki for details
Stars: ✭ 100 (+194.12%)
Mutual labels:  interpreter, virtual-machine
Batch-First
A JIT compiled chess engine which traverses the search tree in batches in a best-first manner, allowing for neural network batching, asynchronous GPU use, and vectorized CPU computations.
Stars: ✭ 27 (-20.59%)
Mutual labels:  llvm, jit-compiler
RSqueak
A Squeak/Smalltalk VM written in RPython.
Stars: ✭ 78 (+129.41%)
Mutual labels:  interpreter, virtual-machine
Freeze-OS
An Operating System that runs on top of an interpreter.
Stars: ✭ 24 (-29.41%)
Mutual labels:  interpreter, virtual-machine
libjit
Unofficial libjit mirror.
Stars: ✭ 46 (+35.29%)
Mutual labels:  virtual-machine, jit-compiler
Laythe
A gradually typed language originally based on the crafting interpreters series
Stars: ✭ 58 (+70.59%)
Mutual labels:  interpreter, virtual-machine
wizard-engine
Research WebAssembly Engine
Stars: ✭ 164 (+382.35%)
Mutual labels:  interpreter, virtual-machine
lunatic
lunatic: a toy lua interpreter
Stars: ✭ 16 (-52.94%)
Mutual labels:  interpreter, virtual-machine
Arduino-FVM
Byte Token Threaded Forth Virtual Machine (FVM) for Arduino
Stars: ✭ 35 (+2.94%)
Mutual labels:  interpreter, virtual-machine
clox
A virtual machine and a tree-walk interpreter for the Lox programming language in C89 🌀
Stars: ✭ 38 (+11.76%)
Mutual labels:  interpreter, virtual-machine
LLVM-JVM
[W.I.P] A Just-In-Time Java Virtual Machine written in Haskell
Stars: ✭ 22 (-35.29%)
Mutual labels:  interpreter, virtual-machine
minima
A fast, byte-code interpreted language
Stars: ✭ 43 (+26.47%)
Mutual labels:  interpreter, virtual-machine

Jingle Logo

Jingle Lang 2021.2

Status GitHub Issues GitHub Pull Requests


Jingle is a dynamically-typed, multi-paradigm programming language designed for humans and machines.

📝 Table of Contents

📜 About

Jingle is a dynamically-typed programming language currently in development. Code in Jingle is fast to run and compile while still retaining small source files and binaries. Based off the Crafting Interpreters book with a new syntax and expanded standard library. More base language features are coming soon.

Here is an example that calculates the Fibonacci numbers and times it to give you a quick look at the language:

fn fib(n):
  if (n < 2) return n;
  return fib(n - 2) + fib(n - 1);
end

var start = timer();
echo "How many iterations?";
var iter = num(gets());
echo "fib(" + str(iter) + ") = " + str(fib(iter));
echo "Time taken " + str(round(timer() - start, 2)) + "s";

Getting Started

Tested in Visual Studio 2019 on Windows. Publish build to local folder and run from commandline: jingle <filename>

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].