Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用“set”和“sv”动词在远程服务器上分配一个变量。如何在不使用字符串表示法的情况下远程执行动词并存储结果?
q)h (set; a; 3) 'a
您需要传递 a 作为符号,如下所示:
h(set;`a;3)
q)h:hopen 5002 q)h (sv;`;`:a/b,`c) `:a/b/c