Maybe a little bug (fglcomp 4.00.03 rev-82223658)

Started by Benjamin G., April 04, 2022, 09:11:43 PM

Previous topic - Next topic

Benjamin G.

Hi,

MAIN
  define i smallint = NULL
  define s string

  let s = 'i = ' || Nvl(i,0) USING '<<&'             # concatened with ||
  display s                                ------>            RESULT = "0"


  let s = 'i = ',Nvl(i,0) USING '<<&'                  # concatened with ,
  display s                                                       RESULT = 'i = 0'

END MAIN

Regards


Benjamin G.