标签:ini operation int http type val value com 技术
DATA: result TYPE i,
int1 TYPE i VALUE 1,
int2 TYPE i VALUE 1.
DEFINE operation.
result = &1 &2 &3.
output &1 &2 &3 result.
END-OF-DEFINITION.
DEFINE output.
write: / ‘The result of &1 &2 &3 is:‘,&4.
END-OF-DEFINITION.
DEFINE opt_add.
result = &1 &2 &3.
WRITE: / ‘&1 + &3 = ‘,result.
END-OF-DEFINITION.
operation 1 + 1.
opt_add 10 + 10.
标签:ini operation int http type val value com 技术
原文地址:https://www.cnblogs.com/moqi222/p/11726919.html