Skip to content

shippingfandom/Riddle

Repository files navigation

Riddle

A programming language transpiled to Glosure!

// Fibonacci series up to n
defun Fib(n) {
    a = 0; b = 1;
    while a < n {
        print(a);
        b = a + b;
        swap(a, b);
    }
}
Fib(1000);

Features

Riddle = Glosure + MiniScript + interoperability between the two!

  • Clean yet versatile brace-style imperative syntax you're familiar with
  • Several unique mechanics and syntax sugar to easen the programming in Glosure

Got interested? 👀

Hop in to the Quick Start below! 👇

Quick Start

There are executables for various operating systems, a VS Code extension with syntax highlighting and code snippets, and a language reference for you! ❤️

Oh, and here are some examples of Riddle transpiled to Glosure scripts that you can run with 5hell/Marinette! 🥰

Credits

Many programming languages ​​use similar syntax with curly braces, so I really appreciate the creators of every language I've tried to this day, it's definitely inspired me!

Best of the kind words are for people that made this possible in one way or another. Big thanks to all of you! 💖

And actually a lot more people who supported me in one way or another. You all are simply the best! 🥰

About

A programming language transpiled to Glosure!

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors