Forum Discussion
rraghvani
Champion Level 3
3 years agoLike so,
def one():
Log.Message("One");
def two():
Log.Message("Two");
def main():
one();
two();
If you run main(), it will call one() and two()
- aafreen_jamadar3 years agoOccasional Contributor
Thankyou, and what if I were to run multiple python scripts under the same project?