Exactly how should I do this?
foo_call_this_command:
check ${_foo_string_to_append}
_foo_string_to_append:
u "const a=5;
a=[$1,$2];
b=[3,4];
set('var',avg(a););
a[0]>b[0]&&a[1]<b[1];
"
Here’s why, I have a big block of code that can be reused in two different command, and it is in this form. So, how would I do this? So, the only way this can work is copy and pasting, but I’d rather reuse it.