Harbour hash plus operator
Posted: Mon May 06, 2019 4:15 am
Does anyone know why the following code under Harbour generates RTE at line h1 + h2 unless I include xhb.ch/hbcompat.ch?
Code: Select all
#include "fivewin.ch"
#include "xbrowse.ch"
#include "xhb.ch"
function main()
local h1 := {"A" => 1}, h2 := {"A" => 2, "B" => 3}, h3
h3 := h1 + h2
xbrowse(h3)
return nil