C--

C-- is a C-like programming language, designed to be generated mainly by compilers for high-level languages rather than written by human programmers. It was created by functional programming researchers Simon Peyton Jones and Norman Ramsey. Unlike many other intermediate languages, it is represented in plain ASCII text, not bytecode or another binary format. Wikipedia

Created Year: 1997
Designed by: Norman RamseySimon Peyton Jones
Developed by: Norman RamseySimon Peyton Jones
Aliases: C minus minus
File extensions: c--

Wikidata: Q81348

Influenced by: C

Programming paradigms: imperative programming

C-- Influence Network

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

Hello World in C--

target byteorder little;
import puts;
export main;

section "data"{
    s:bits8[] "Hello World\0";
}

foreign "C" main(){
    foreign "C" puts("address"s);
    foreign "C" return(0);
}

Search on GitHub


Latest data update: 2024-11-22