How to see what package a function comes from?

Viewed 65

How can see from which package a function (or some other object) originates? For example the function

take!()
1 Answers

This can be done with the @which macro:

@which take!

Base
Related