How do I return a result from a function? For example: Public Function test() As Integer return 1 End Function This gives a compile error. How do I make...
  • May 15, 2022
  • 0 Comments
I am working with a bash script and I want to execute a function to print a return value: function fun1(){ return 34 } function fun2(){ local res=$(fun1) echo...
  • May 4, 2022
  • 0 Comments