Ada Flashcards

1
Q

ADA - How to create a Record of type Date

A
  • someday1 := ( 1, JAN, 1901 ); −− order fixed by the Date type
  • someday2 := ( m => JAN, d => 1, y => 1901 ); −− any order is OK

optionally using the names of
the components, which allows one to write the components in any order

How well did you know this?
1
Not at all
2
3
4
5
Perfectly