Logo

Programming-Idioms

History of Idiom 214 > diff from v8 to v9

Edit summary for version 9 by tkoenig:
[Fortran] Added colon to make it compile

Version 8

2019-11-05, 17:58:58

Version 9

2019-11-11, 17:25:56

Idiom #214 Pad string on the right

Append extra character c at the end of string s to make sure its length is at least m.
The length is the number of characters, not the number of bytes.

Idiom #214 Pad string on the right

Append extra character c at the end of string s to make sure its length is at least m.
The length is the number of characters, not the number of bytes.

Imports
That's automatically the way strings are handled, as specified by the Fortran language standard.
Imports
That's automatically the way strings are handled, as specified by the Fortran language standard.
Code
CHARACTER(N):  FOO
Code
CHARACTER(N) ::  FOO