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/parasailWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | compiled · concurrent · imperative · structured · object-oriented |
|---|---|
| Typing | strong, static |
| Designed by | AdaCore · S. Tucker Taft |
| First appeared | 2009 |
| Influenced by | Modula · Ada · Pascal · ML |
| License | GPL v3 |
| Homepage | http://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.| Extension | Source | Strength | SWH |
|---|---|---|---|
.psi | pygments | primary | 100.4K files |
.psl | pygments | secondary | 13.8K files |
.psi | wikipedia | proposed | 100.4K files |
.psl | wikipedia | proposed | 13.8K files |
Related languages
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
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.)