@r2qo Can you give me an example, not sure what you mean (and I do a fair bit of AI stuff).
@freemo
class Blah:
pass
def process(that_thing):
func1(that_thing)
func2(that_thing)
def main():
pass_around = Blah()
pass_around.arg_a = 1
process(pass_around)
return pass_around.result.something
@freemo The spaces got truncated. Sorry!
Hope you can get what I mean😂
@lhackworth @freemo Thanks
Is there any reference so I can learn more about this?