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

8 lines
146 B
ABAP
Raw Permalink Normal View History

2013-04-10 16:57:12 -07: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.