Created
May 7, 2021 23:55
-
-
Save cari-lynn/66699b6c7e759947fabb55c261d15fb9 to your computer and use it in GitHub Desktop.
Starlark multi line string
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
(@ load("funcs.star", "func1") @) | |
(@= func1() @) |
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
#@ load("funcs.star", "func1") | |
thing: #@ func1() |
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
def func1(): | |
return '''hello there | |
this is a | |
muli line string''' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment