Hi there,
I am trying to write a UR Script. I have defined a couple of functions.
My questions is how can i call functions within functions?
For example:
def reorder_int_to_bool_array(bool_array):
rearrange_bool_array = [ bool_array[24] ]
return rearrange_bool_array
enddef read_input_int(x):
register_input = reorder_int_to_bool_array(integer_to_binary_list(read_input_integer_register(x)))
return register_input
end
Thank you in advance!