RosettaCodeData/Task/Character-codes/ABAP/character-codes.abap

8 lines
146 B
ABAP
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
report zcharcode
data: c value 'A', n type i.
field-symbols <n> type x.
assign c to <n> casting.
move <n> to n.
write: c, '=', n left-justified.