Description:
Discussion about Ada*.
|
|
|
Ada on Android
|
| |
Hi all,
I've just completed my webpage on how to build an Android app that
allows you to include native ARM code written in Ada.
Check out my findings at [link]
Regards,
Rob
|
|
Ada compiler using a M2 compiler as back-end
|
| |
Hi,
Just saw that a Modula-2 compiler (Stony Brook) has been recently
released as freeware:
[link]
IIRC it is reputed to produce very compact and fast machine code.
A nice project would be to plug an Ada front-end to it and see the
result...
_________________________... more »
|
|
FOSDEM 2012 - Presentations Ada Developer Room on-line
|
| |
------------------------------ ------------------------------ -----------
*** All presentations available on-line ***
Ada Developer Room at FOSDEM 2012
(Ada at the Free and Open-Source Software Developers' European Meeting)
Saturday 4 February 2012... more »
|
|
ada without ada libraries?
|
| |
Hi Everyone
I just got my compiler set up the way I want it and I am ready for my
first ada project.
I have spent sometime with lua. Lua's library support is terrible but
lots of people love the language. Many people just build a rough
skeleton application in C and call it from lua.
Lua handles all the type checking and much of the logic in this... more »
|
|
Weird behavior with modular type
|
| |
Hi all,
I expect the test to be shortened enough.
The following compiles and run without an error:
with Ada.Text_IO;
procedure Bug is
type Modular_Type is mod 256;
subtype Index_Type is Natural range 1 .. 3;
E : Modular_Type := 255;
I : Index_Type := 3;... more »
|
|
Help needed - Upper Bound of an array - Question.
|
| |
I am not an expert programmer in Ada but I have taught myself enough
Ada-95 to be able to write some difficult cryptography programs that I
post in another group.
My problem is this. I need to test the frequency of the ciphertext
which is sometimes a long string of large positive integers of 7 or 8... more »
|
|
GNAT GPL 2011 bug ?
|
| |
Hi all,
The compiler accept the line mark by a arrow of the adb bellow and
refuse the line mark by "****". I think it must not accept the first
line to. What do you think ?
Thanks
------- ads --------
type I is interface;
procedure set (Self : out I;
Value : in Natural) is abstract;... more »
|
|
GNAT: no more exception raised on illformed text file?
|
| |
Hi all,
Seems my FSF GNAT (*) does not raise an exception anymore when encountering the last line of a malformed text file; that is, a text file whose last line is not terminated with an end‑of‑line.
Is this on purpose?
(*) GNAT 4.7.0 20111119 (experimental)
-- Syntactic sugar causes cancer of the semi-colons. [1]... more »
|
|
Building limited types through nested creator functions
|
| |
Hi,
Consider two limited record types, inner and outer, with the former
nested inside the latter. If the records are public, then code can
initialize the outer by specifying an aggregate for the inner, as in:
type Inner is limited
record
e : Integer;
end record;
type Outer is limited... more »
|
|
|