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. Wikipedia

Designed by: David Nichols
Developed by: David Nichols

Wikidata: Q25345888

Influenced by: C++DJavaPerl

Programming paradigms: object-oriented programmingprocedural programming

Language types: object-based languageprocedural programming language

Qore Influence Network

Pan and zoom the graph with your mouse or alternatively your fingers on touch devices.

Hello World in Qore

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

Search on GitHub


Latest data update: 2024-10-09