Hi Christian,Unfortunately, the code seems to not care about this fact as a single empty vector is still problematic. It has no troubles with two empty vectors though: button←'BUTTON' HTML∆TX_B_E[⊃,/b∆attr1 b∆attr2 b∆attr3] "" *** Assertio
From what I understood,
this is a scalar '' (an empty one)
this is a vector "" (an empty one)
'something' is equivalent to "something" as long as length of something >= 2
'a' <> "a" because 'a' is a scalar and "a" is an array of length 1
'' <> "" because '' is an empty scalar and "" is
Hi bug-apl,Im not even sure if I am using it right but it seems that HTML∆TX_B_E wants a nested vector as it's right argument. This works:b∆attr1←'name'HTML∆attr'submitButton'b∆attr2←'type'HTML∆attr'submit'b∆attr3←'value'HTML∆attr'SUBMIT!' ⊃,/'BUTTON' HTML∆TX_B_E[⊃,/b∆attr1 b∆attr2 b∆attr3] ''