This should be easier to do without the extra printing: ```python @swim def test(): print("Première fonction") swim(test2) @swim def test2(): print("Seconde fonction") swim(test) ```