How can I import a file in another file (for phones)

Question:
How can I import a file in another file (for
phone)
Repl link/Link to where the bug appears:

Screenshots, links, or other helpful context:

code snippet

Which language are you using?
Python:

import otherfilename
otherfilename.somefunctionname()

MJS:

export { somefunctionname }
import { somefunctionname } from otherfilename
somefunctionname()

…etc

4 Likes