From d21213f499591144fef9ba84f4dc10ceabbc50dc Mon Sep 17 00:00:00 2001 From: kazama Date: Fri, 15 Sep 2023 22:38:14 +0000 Subject: [PATCH 1/2] chore: testing auth --- basics/commands/hello_world.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 basics/commands/hello_world.py diff --git a/basics/commands/hello_world.py b/basics/commands/hello_world.py new file mode 100755 index 00000000..52725876 --- /dev/null +++ b/basics/commands/hello_world.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python + +print("Hello!, World") + +#This is a full line comment +#This doesn't take space or memory +""" +This is not a block comment +This is a multiline string +""" \ No newline at end of file From c3fc5f51547a743afb0737e74ab18a8f4fc69c9c Mon Sep 17 00:00:00 2001 From: kazama Date: Fri, 15 Sep 2023 23:04:41 +0000 Subject: [PATCH 2/2] added crap --- basics/commands/hello_world.py | 1 + basics/commands/strings.py | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 basics/commands/strings.py diff --git a/basics/commands/hello_world.py b/basics/commands/hello_world.py index 52725876..bbcb41bd 100755 --- a/basics/commands/hello_world.py +++ b/basics/commands/hello_world.py @@ -2,6 +2,7 @@ print("Hello!, World") + #This is a full line comment #This doesn't take space or memory """ diff --git a/basics/commands/strings.py b/basics/commands/strings.py new file mode 100644 index 00000000..9ca241d5 --- /dev/null +++ b/basics/commands/strings.py @@ -0,0 +1,7 @@ +#!/usr/bin/env python + +strings = "pass" + "word" + +print(strings.find("o")) + +strings. \ No newline at end of file