mirror of
https://github.com/nasa/fpp.git
synced 2025-12-11 03:05:32 -06:00
12 lines
166 B
Fortran
12 lines
166 B
Fortran
type TU32 = U32
|
|
type TF32 = F32
|
|
type TString = string
|
|
type TStringSize = string size 2
|
|
|
|
struct Basic {
|
|
A: TU32,
|
|
B: TF32,
|
|
C: TString,
|
|
D: TStringSize
|
|
}
|