comp.lang.ada
 help / color / mirror / Atom feed
From: "Stéphane Rivière" <stef@genesix.fr>
Subject: Re: LEA - Lightweight Editor for Ada - Binary release v. 0.74
Date: Tue, 30 Jun 2020 10:19:58 +0200	[thread overview]
Message-ID: <rdeskn$71a$1@gioia.aioe.org> (raw)
In-Reply-To: 8a8ec31e-064a-43a0-a26d-1d0774bbfa6co@googlegroups.com

Le 30/06/2020 à 09:42, gautier_niouzes@hotmail.com a écrit :
> LEA - Lightweight Editor for Ada - Binary release v. 0.74

Looks like a tiny Gnat Community environment at human scale !

With a true Ada subset as HAC sources are compilable by GNAT...

> Currently available on Windows.

Does-it work with Wine ?

Download > Open with Wine

Appears to...

LEA - [Projectless] - [Untitled]

Can be compile and run some sample ?

-------------------
with HAC_Pack; use HAC_Pack;

procedure Hello is
  f : Real := 0.0;
begin
  Put("Hello");
  Put_Line(" world!  ...  Spaceman is speaking ...");
  Put_Line(
        "          i     i ** 2     2 ** i      2.0 ** i      2.0 ** f");
  Put_Line(
        "-------------------------------------------------------------");
  for i in 1 .. 10 loop
    Put (i, 11);
    Put (i ** 2);
    Put (2 ** i);
    Put (2.0 ** i, 11, 2, 0);       --  Fore, Aft, Exp.
    f := f + 1.0;
    Put_Line (2.0 ** f,  5, 3, 4);  --  Fore, Aft, Exp.
  end loop;
end;
-------------------

[Build and Run]

Hello World!  ....  Spaceman is speaking ...

.../...

Yes!!!!

And... All this embedded in one binary... Amazing. A real KISS Ada
environment for serious scripting tasks and educational purposes.

Thanks and congrats Gautier ;)

-- 
Be Seeing You
Number Six

      reply	other threads:[~2020-06-30  8:19 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-30  7:42 LEA - Lightweight Editor for Ada - Binary release v. 0.74 gautier_niouzes
2020-06-30  8:19 ` Stéphane Rivière [this message]
replies disabled

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox