summaryrefslogtreecommitdiffstats
path: root/ExampleSubmission
diff options
context:
space:
mode:
authorjwansek <eddie.atten.ea29@gmail.com>2022-02-21 16:25:57 +0000
committerjwansek <eddie.atten.ea29@gmail.com>2022-02-21 16:25:57 +0000
commit3e5d53b94cb535071ee0e4135de0f7d191cf26dc (patch)
treec84b0b8a739afc4d9480af061ce642b046751b0b /ExampleSubmission
parentc54a8630faa8e1c597d598bf7497d724efb0fb18 (diff)
downloadSmarker-3e5d53b94cb535071ee0e4135de0f7d191cf26dc.tar.gz
Smarker-3e5d53b94cb535071ee0e4135de0f7d191cf26dc.zip
removed \rs for cross platform compatibility
Diffstat (limited to 'ExampleSubmission')
-rw-r--r--ExampleSubmission/example.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/ExampleSubmission/example.py b/ExampleSubmission/example.py
index 9b5f0e8..0cf7cd7 100644
--- a/ExampleSubmission/example.py
+++ b/ExampleSubmission/example.py
@@ -70,5 +70,9 @@ def greet(*names, greeting="Hello"):
for name in names:
print(greeting, name)
+def make_multilines():
+ print("True\n\nFalse")
+
if __name__ == "__main__":
- print(hello_world(int(sys.argv[1])) + "\n\nowo" ) \ No newline at end of file
+ print(hello_world(int(sys.argv[1])) + "\n\nowo" )
+ make_multilines() \ No newline at end of file