Consultor Eletrônico



Kbase P6728: How to append an integer value like a string
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   04/02/2005
Status: Unverified

GOAL:

How to append an integer value like a string

FIX:

DEFINE VARIABLE x AS INT init 1.
DEFINE VARIABLE y AS INT init 2.
DEFINE VARIABLE z AS INT.

ASSIGN z = INTEGER( String(x) + String(y)).
Z should now = 12.