Quick actions

cmd+k|ctrl+k

Navigation

Languages

Definition (2)

Snippet info

Language

Python

Visibility

public

Author

hohim4095

Created

2024-09-19T13:53:35.205457Z

Updated

2024-09-19T13:53:35.205457Z

def a(w):
    return w()
def b():
    print("I am from function b")
a(b)
INFO