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
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