How to return multiple values of different types in a function, like @sv(return_type=Reference(symbol=DataType.String,` value=DataType.Int)) def test(): return "name", 123 There are always compilation errors.
How to return multiple values of different types in a function, like
@sv(return_type=Reference(symbol=DataType.String,` value=DataType.Int))
def test():
return "name", 123
There are always compilation errors.