comp.lang.ada
 help / color / mirror / Atom feed
* New to ada.
@ 1994-10-03  1:24 Seth Hettich
  1994-10-03  5:03 ` Robert Dewar
  0 siblings, 1 reply; 30+ messages in thread
From: Seth Hettich @ 1994-10-03  1:24 UTC (permalink / raw)


I just started using ada (verdix) on a sequent. I'm looking for a way
to get large integers. But it only appears to support integers up to
2^32 -1. Is there a way to get integers that can range from 0 .. 2^72


Seth Hettich



^ permalink raw reply	[flat|nested] 30+ messages in thread
* New to ADA
@ 1995-01-19  7:57 John Mackaay
  0 siblings, 0 replies; 30+ messages in thread
From: John Mackaay @ 1995-01-19  7:57 UTC (permalink / raw)


  Hi all.I'm new to ADA and want to explore the language.I bought the
Walnut Creek CD ( July 94 ) and would like to get recommendations on
which compiler/editor to use which would be good for a beginner.I have
some Pascal,C++, and basic programming background.
Thanks in Advance.
John.



^ permalink raw reply	[flat|nested] 30+ messages in thread
* New to ADA
@ 1997-11-06  0:00 Dennis East
  1997-11-07  0:00 ` bklungle
  0 siblings, 1 reply; 30+ messages in thread
From: Dennis East @ 1997-11-06  0:00 UTC (permalink / raw)



Need some assistance getting started in ADA
In the following procedure I am getting 
"invalid parameter list in call" 
just trying to get a 3 character month string, and have made several
changes but seem to get one error followed by another.

-- Procedure to get the date in the format dd,mmm,yyyy

with gnat.io; use gnat.io;
procedure get_date is

type month_name;
type month_name is (Jan, Feb, Mar, Apr, May, Jun, Jly
   , Aug, Sep, Oct, Nov, Dec);
mon: month_name;

type date_record;
type date_ptr is access all date_record;
type date_record is
   record
      day: integer range 1..31;
      month: month_name;
      year: integer;
   end record;

D,date_rec: date_ptr;   

begin
   put("Please enter the desired date ");
   date_rec := new date_record;
   D := date_rec;
   get(D.all.day);
   put("Enter Month ");
   get(D.all.month);	-- Error occurs here
   D.all.month:=mon;
   put("Enter Year ");
   get(D.all.year);
   new_line;
   put("Date entered is ");
   put(D.all.day);
   put("-");
   put("D.all.month");
   put("-");
   put(D.all.year);
   new_line;
end get_date;

It is possible I'm overlooking the obvious, so another solution could be
used also.  In final package I will need to input name strings into a
linked list record, so I need something similar that works.

Thanks for any assistance.. Dennis





^ permalink raw reply	[flat|nested] 30+ messages in thread
* New to Ada
@ 2002-09-04  5:21 Bill Cunningham
  2002-09-04  6:52 ` Pascal Obry
                   ` (2 more replies)
  0 siblings, 3 replies; 30+ messages in thread
From: Bill Cunningham @ 2002-09-04  5:21 UTC (permalink / raw)


I've never used Ada but I like to check new things out. C++ and C appeal to
me Java not so much. Is Ada a compiled programming language? Is this Ada
that help Charles Babbage with his counting machine?




-----= Posted via Newsfeeds.Com, Uncensored Usenet News =-----
http://www.newsfeeds.com - The #1 Newsgroup Service in the World!
-----==  Over 80,000 Newsgroups - 16 Different Servers! =-----



^ permalink raw reply	[flat|nested] 30+ messages in thread
* New to ADA
@ 2002-10-28  6:36 Bill Cunningham
  2002-10-28  6:47 ` Jim Rogers
  2002-10-28 22:22 ` Michal Nowak
  0 siblings, 2 replies; 30+ messages in thread
From: Bill Cunningham @ 2002-10-28  6:36 UTC (permalink / raw)


I'd like to investigate ada a little I'm used to C and C++. Is ada as
powerful as C++. Does it have inheritance, OOP, classes or something
similar. I know one command with ada 'with'. Is there a compiler for windows
98?
I don't use interpreters.




-----= Posted via Newsfeeds.Com, Uncensored Usenet News =-----
http://www.newsfeeds.com - The #1 Newsgroup Service in the World!
-----==  Over 80,000 Newsgroups - 16 Different Servers! =-----



^ permalink raw reply	[flat|nested] 30+ messages in thread
* New to Ada
@ 2017-09-12  8:42 mig20022000
  2017-09-12 11:44 ` Luke A. Guest
                   ` (4 more replies)
  0 siblings, 5 replies; 30+ messages in thread
From: mig20022000 @ 2017-09-12  8:42 UTC (permalink / raw)


Hello. I am very new to Ada. I come from a C/C++ background and the the free sources that I have found on-line just don't make sense to me.

The way I usually learn new languages is by starting from basic algorithms. usually bubble sort and so on to merge sort using multi-threads. 

I was wondering if anyone could help me figure out how to write a bubble sort with user input. 

I will be more than happy to start a website with detailed tutorial of how to do any of the practices that I do so other people can pick up this amazing language.

Thank you in advance. 

^ permalink raw reply	[flat|nested] 30+ messages in thread

end of thread, other threads:[~2017-12-23 22:14 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1994-10-03  1:24 New to ada Seth Hettich
1994-10-03  5:03 ` Robert Dewar
  -- strict thread matches above, loose matches on Subject: below --
1995-01-19  7:57 New to ADA John Mackaay
1997-11-06  0:00 Dennis East
1997-11-07  0:00 ` bklungle
2002-09-04  5:21 New to Ada Bill Cunningham
2002-09-04  6:52 ` Pascal Obry
2002-09-04 12:37   ` Georg Bauhaus
2002-09-04 13:20     ` Pascal Obry
2002-09-04 19:01   ` Jeffrey Carter
2002-09-04 10:50 ` Preben Randhol
2002-09-04 12:05 ` Larry Kilgallen
2002-09-04 11:10   ` Preben Randhol
2002-10-28  6:36 New to ADA Bill Cunningham
2002-10-28  6:47 ` Jim Rogers
2002-10-28  7:02   ` Bill Cunningham
2002-10-28 21:20     ` Dennis Lee Bieber
2002-10-28 22:22 ` Michal Nowak
2002-10-29 10:15   ` Colin Paul Gloster
2017-09-12  8:42 New to Ada mig20022000
2017-09-12 11:44 ` Luke A. Guest
2017-09-12 12:49   ` Lucretia
2017-09-12 14:59 ` Brian Drummond
2017-09-12 16:40 ` Johan Söderlind Åström
2017-09-12 18:21 ` Jeffrey R. Carter
2017-09-14  6:42   ` Petter Fryklund
2017-09-14 11:52     ` Lucretia
2017-09-15  5:17       ` Petter Fryklund
2017-12-23 22:14       ` Yves Cloutier
2017-09-15 22:54 ` Jere

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