transpiler
transpiler copied to clipboard
bug, int8 from hex can give larger values than possible
it should stay within 8 bytes,
FORM run.
DATA foo TYPE xstring.
DATA int TYPE int8.
foo = '0AAAAAAAAAAAAAAAAA'.
int = foo.
WRITE / int.
ENDFORM.
START-OF-SELECTION.
PERFORM run.