I want to change namespace by a given parameter something like below:
f:{system "d x"}
but this failed, .i.e
q)f[".new"]
{system "d x"}
'"
@
.,["\\"]
"d x"
How can I do this?
Thanks.
I want to change namespace by a given parameter something like below:
f:{system "d x"}
but this failed, .i.e
q)f[".new"]
{system "d x"}
'"
@
.,["\\"]
"d x"
How can I do this?
Thanks.
Copyright © 2021 Jogjafile Inc.
You need to concatenate the function param
x
to yoursystem
call using join,
i.e.