Title: | Digital Ladebug debugger |
Moderator: | TLE::LUCIA |
Created: | Fri Feb 28 1992 |
Last Modified: | Fri Jun 06 1997 |
Last Successful Update: | Fri Jun 06 1997 |
Number of topics: | 969 |
Total number of notes: | 3959 |
T.R | Title | User | Personal Name | Date | Lines |
---|---|---|---|---|---|
489.1 | Looks fine to me | UHUH::LUCIA | http://asaab.zko.dec.com/people/tjl/biography.html | Tue Mar 19 1996 09:43 | 87 |
489.2 | QUARK::LIONEL | Free advice is worth every cent | Tue Mar 19 1996 16:41 | 3 | |
489.3 | UHUH::LUCIA | http://asaab.zko.dec.com/people/tjl/biography.html | Wed Mar 20 1996 09:47 | 5 | |
489.4 | QUARK::LIONEL | Free advice is worth every cent | Thu Mar 21 1996 13:27 | 59 | |
489.5 | UHUH::LUCIA | http://asaab.zko.dec.com/people/tjl/biography.html | Thu Mar 21 1996 16:41 | 11 | |
489.6 | QUARK::LIONEL | Free advice is worth every cent | Thu Mar 21 1996 16:46 | 4 | |
489.7 | Location of Example | TLE::KIMBALL | Keith Kimball 381-0573 | Fri Mar 22 1996 07:25 | 37 |
489.8 | Status | TLE::LUCIA | http://asaab.zko.dec.com/~lucia/biography.html | Mon May 12 1997 11:45 | 46 |
Two issues here, both on the to-do list: 1. Print something a little more friendly for abstract types, like #old behavior (ladebug) print bins Error: The type BIN (:) is an abstract type. Cannot print the value of an abstract type. #new behavior (ladebug) print bins (unallocated) 2. Elements of arrays of types, i.e. (ladebug) print bins(1)%element # should not give a syntax error This should print: (1) type BIN ELEMENT = 1.2345 end type (ladebug) list 1,100 1 program example 2 3 type bin 4 real :: element 5 end type bin 6 7 type(bin), allocatable :: bins(:) 8 9 allocate (bins(2)) 10 11 bins(1)%element = 1.2345 12 bins(2)%element =-5.4321 13 > 14 print *, bins 15 16 end (ladebug) |