Last active
April 3, 2017 15:53
-
-
Save kchodorow/bcd03724cb2a65d354bcdf0288774ff4 to your computer and use it in GitHub Desktop.
load() example
This file contains 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
load('//:my-first-extension.bzl', 'greeting') | |
greeting() |
This file contains 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
def greeting(): | |
print('Hello, world') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
greeeting() should be changed to greeting()
contains a redundant 'e'