mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
20 lines
472 B
Python
20 lines
472 B
Python
|
|
def unclear():
|
|
# Returns [ "first part of long string and the second part", "/usr/local/usr/bin" ]
|
|
return [
|
|
|
|
"first part of long string"
|
|
" and the second part",
|
|
"/usr/local"
|
|
"/usr/bin"
|
|
]
|
|
|
|
def clarified():
|
|
# Returns [ "first part of long string and the second part", "/usr/local", "/usr/bin" ]
|
|
return [
|
|
"first part of long string" +
|
|
" and the second part",
|
|
"/usr/local",
|
|
"/usr/bin"
|
|
]
|