-
-
Save tearf001/d1f35138b06e296d128b1c2dfdfd8a50 to your computer and use it in GitHub Desktop.
hello world
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sublime, sublime_plugin | |
class ExampleCommand(sublime_plugin.TextCommand): | |
def run(self, edit): | |
self.view.insert(edit, 0, "Hello, World!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment