mirror of
https://github.com/neovim/neovim.git
synced 2024-12-25 21:55:17 -07:00
20 lines
206 B
Plaintext
20 lines
206 B
Plaintext
|
# vim: set filetype=bitbake :
|
||
|
|
||
|
# START_INDENT
|
||
|
FOO = " \
|
||
|
bar \
|
||
|
baz \
|
||
|
qux \
|
||
|
"
|
||
|
|
||
|
do_configure() {
|
||
|
oe_conf
|
||
|
}
|
||
|
|
||
|
python do_task() {
|
||
|
def foo(x):
|
||
|
if y:
|
||
|
print(x)
|
||
|
}
|
||
|
# END_INDENT
|