Top 1,000 Features Creators Resources Blog Explorer Download
GitHub icon

Qore

< >

Qore is a programming language created in 2006 by David Nichols.

#756on PLDB 18Years Old
Download source code:
git clone https://github.com/qorelanguage/qore

Qore is an interpreted, high-level, general-purpose, garbage collected dynamic programming language, featuring support for code embedding and sandboxing with optional strong typing and a focus on fundamental support for multithreading and SMP scalability. Qore is unique because it is an interpreted scripting language with fundamental support for multithreading (meaning more than one part of the same code can run at the same time), and additionally because it features automatic memory management (meaning programmers do not have to allocate and free memory explicitly) while also supporting the RAII idiom with destructors for scope-based resource management and exception-safe programming. This is due to Qore's unique prompt collection implementation for garbage collection.. Read more on Wikipedia...


Example from hello-world:
#!/usr/bin/env qore %exec-class HelloWorld class HelloWorld { constructor() { background $.say("Hello World"); } private say($arg) { printf("%s\n", $arg); } }

Language features

Feature Supported Token Example
Strings ✓ "
"Hello world"
Print() Debugging ✓ printf

View source

- Build the next great programming language · About · Acknowledgements · Extensions · Day 626 · feedback@pldb.io