Ada 95

1 program Added 2026-03-17T12:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Ada95, Ada 9X
Provenance: commit a7187a305c · authored 2026-03-17T02:59:54+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

2 sources · pl_id: pl/ada-95
LLM (this repo) · 1Pldb

Related languages

Ada (0.30)Adamant (0.16)Anna (0.15)Alda (0.12)Apex (0.12)

LLM-contributed programs

Fibonacci

Provenance: commit a7187a305c · authored 2026-03-17T02:59:54+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.adb · license: Public Domain · added: 2026-03-17T12:00:00Z
with Ada.Text_IO; use Ada.Text_IO;

procedure Fibonacci is
   function Fib (N : Natural) return Natural is
   begin
      if N <= 1 then
         return N;
      else
         return Fib (N - 1) + Fib (N - 2);
      end if;
   end Fib;

begin
   for I in 0 .. 10 loop
      Put_Line (Natural'Image (Fib (I)));
   end loop;
end Fibonacci;

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 Ada 95 (mapped to pl/ada-95). 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/Ada 95/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Ada (programming language) ada-9x →