Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
def myfunc(message): | |
""" | |
This is external function | |
@param message: this is string that is going to be printed | |
@return: none | |
""" | |
print("myfunc: %s" % message) |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/