mirror of
https://github.com/nasa/fpp.git
synced 2025-12-12 04:41:37 -06:00
12 lines
90 B
Fortran
12 lines
90 B
Fortran
module M {
|
|
enum E {
|
|
X = 1
|
|
Y = 2
|
|
}
|
|
}
|
|
|
|
struct Enum {
|
|
e: M.E
|
|
eArr: [3] M.E
|
|
}
|