From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,a4d219b87cdeba25 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news3.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local01.nntp.dca.giganews.com!nntp.scarlet.biz!news.scarlet.biz.POSTED!not-for-mail NNTP-Posting-Date: Sat, 17 Dec 2005 05:24:33 -0600 From: Ludovic Brenta Newsgroups: comp.lang.ada Subject: Re: Ada script, anyone References: Date: Sat, 17 Dec 2005 12:23:57 +0100 Message-ID: <87u0d8t19u.fsf@ludovic-brenta.org> User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/21.4 (gnu/linux) Cancel-Lock: sha1:gTA0+RTe7tiHrNcAmJzH5fXM6jY= MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii NNTP-Posting-Host: 83.134.240.25 X-Trace: sv3-0HcJpdC9d7iWtfKLEiCjL5sCuQOOOwXWaBF2vqizN1QR0ghXGLGwiK9R2mDUeOvNZKCcIXDkJ07hE2q!Rej2Q/AU7CjygFh/7PCFBRMKkFSXfEztTxgrZ2+p/jZZs4CYD1VLsw8ePSK+F7Qw+BTuN7EoOA== X-Complaints-To: abuse@scarlet.be X-DMCA-Complaints-To: abuse@scarlet.biz X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.32 Xref: g2news1.google.com comp.lang.ada:6907 Date: 2005-12-17T12:23:57+01:00 List-Id: "Xcriber51" writes: > Hi > > This will probably be a (slightly?) absurd question, but is there an Ada > (script) interpreter? http://www.pegasoft.ca/bush.html > The reason I'm asking is I know a C/C++ interpreter which, though it is a > barebones commandline interpreter and does not provide the full comfort of > an integrated IDE (with a debugger, etc.), makes life easier. > > It'd be great to have a tool like the universally ever popular Visual > Basic thing - which most coders I know prefer to everything else - that'd > be as easy to get going and introduce them (or help them side-grade) to > Ada. If you are looking for a direct replacement for Visual Basic, I don't think there is one right now. However there is a project on SourceForge to make one: http://sourceforge.net/projects/gnavi >From what I gather, GNAVI is work in progress. Some parts of it, in particular the GWindows library, are already mature, but the GUI builder is beta. GWindows is Windows only but there are plans to port it to other platforms. Another solution is AdaCore's development suite for GTK+ or GNOME development. This works on many platforms. * Glade is a point-and-click GUI builder that represents your GUI as an XML file. The associated library, libglade, allows your application to load this XML file and create its GUI at run time. Alternatively, glade can generate source code in various languages from the XML file. See http://glade.gnome.org/ * GtkAda is a library allowing you to program (in a traditional way) GTK+ interfaces in Ada. It also contains Gate, a program that takes the XML file produced by Glade and generates Ada source from it, and an Ada binding to libglade. Thus, you can use glade from Ada. See http://libre.adacore.com/ * The GNAT Programming Studio is a complete IDE for Ada. See http://libre.adacore.com HTH -- Ludovic Brenta.