Questions Columns Rows
GitHub icon

Qore

Qore - Programming language

< >

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

Source code:
git clone https://github.com/qorelanguage/qore
#1163on PLDB 17Years Old

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); } }

View source

- Build the next great programming language Search Add Language Features Creators Resources About Blog Acknowledgements Stats Sponsor Traffic Traffic Today Day 267 feedback@pldb.com Logout