ParaSail

1 program Added 2025-11-12T08:42:37Z Model: google/gemini-2.5-proTemp: 0.4 Evidence Report issue View issues
Aliases: —
Provenance: commit 098de760dc · authored 2025-11-12T09:42:37+01:00 · model google/gemini-2.5-pro

Sources mentioning this language

5 sources · pl_id: pl/parasail
LLM (this repo) · 1PldbPygmentsWikipediaWikidata · Q7133637

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Paradigmscompiled · concurrent · imperative · structured · object-oriented
Typingstrong, static
Designed byAdaCore · S. Tucker Taft
First appeared2009
Influenced byModula · Ada · Pascal · ML
LicenseGPL v3
Homepagehttp://parasail-lang.org

Extensions claimed by this language

4 claims. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.psipygmentsprimary100.4K files
.pslpygmentssecondary13.8K files
.psiwikipediaproposed100.4K files
.pslwikipediaproposed13.8K files

Related languages

Paradoc (0.27)PartiQL (0.27)MAINSAIL (0.25)Rail (0.23)Avail (0.21)

LLM-contributed programs

Graphical Hello World with GTK and Cairo

Provenance: commit 098de760dc · authored 2025-11-12T09:42:37+01:00 · model google/gemini-2.5-pro · Temp 0.4
code.psi · license: GNU Free Documentation License 1.2 · added: 2025-11-12T08:42:37Z
use Gtk
use Cairo

func main(Args : Basic_Args) is
    var Window : Gtk_Window_Record;
    Gtk_Init(Args);
    Gtk_Window_New(Window, Gtk_Window_Toplevel);
    Gtk_Window_Set_Title(Window, "Drawing");
    Gtk_Window_Set_Default_Size(Window, 400, 400);

    Gtk_Signal_Connect(Window, "destroy", Gtk_Main_Quit, null);

    var Area := new Gtk_Drawing_Area_Record;
    Gtk_Drawing_Area_New(Area);
    Gtk_Container_Add(Window, Area);
    Gtk_Signal_Connect(Area, "draw", on_draw, null);

    Gtk_Widget_Show_All(Window);
    Gtk_Main();
end func main;

func on_draw(Widget : Gtk_Widget; Cr : Cairo_Context; User_Data : Univ_Ptr) -> Gboolean is
    Cairo_Set_Source_Rgb(Cr, 0.0, 0.0, 0.0);
    Cairo_Select_Font_Face(Cr, "Sans", Cairo_Font_Slant_Normal, Cairo_Font_Weight_Normal);
    Cairo_Set_Font_Size(Cr, 40.0);
    Cairo_Move_To(Cr, 10.0, 50.0);
    Cairo_Show_Text(Cr, "Hello, World");
    return False;
end on_draw;

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

Tell us where to find evidence about ParaSail (mapped to pl/parasail). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/ParaSail/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Pararedox parasolid →