sardine
sardine copied to clipboard
Chain swimming functions
This should be easier to do without the extra printing:
@swim
def test():
print("Première fonction")
swim(test2)
@swim
def test2():
print("Seconde fonction")
swim(test)