If I need a value returned from function system() I call it like this:
let $MY_VAR = system('echo value')
But if I don't need a value return from a function, this code fragment doesn't work as expected:
system('echo value')
And I have to use some phony variable I will never use just to call a function:
let $MY_VAR = system(<run some code with side effects in the system>)
Is there any way to call a function without using a phony variable?