From 094d75064e1efc30dea0be36fc3049d4cfced5a8 Mon Sep 17 00:00:00 2001 From: Jerald Date: Sun, 18 Oct 2020 01:43:44 +0800 Subject: [PATCH 1/2] New contribution for Python --- Contributions.md | 6 ++++++ profiles/jerald.md | 24 ++++++++++++++++++++++++ script/jerald.py | 7 +++++++ 3 files changed, 37 insertions(+) create mode 100644 profiles/jerald.md create mode 100644 script/jerald.py diff --git a/Contributions.md b/Contributions.md index 1ab225d..90e4b9c 100644 --- a/Contributions.md +++ b/Contributions.md @@ -9,3 +9,9 @@ - Place: Semarang, Indonesia - Bio: Maintener. - - GitHub: [syouryuumaru](https://github.com/syouryuumaru) + +#### Name: Jerald + +- Place: Singapore +- Bio: Computer Science +- GitHub: [jeraldlyh](https://github.com/jeraldlyh) \ No newline at end of file diff --git a/profiles/jerald.md b/profiles/jerald.md new file mode 100644 index 0000000..cb28c0c --- /dev/null +++ b/profiles/jerald.md @@ -0,0 +1,24 @@ +# Jerald +### Location + +Singapore + +### Academics + +- College, Computer Science Undergraduate + +### Interests + +- Coding + +### Development + +- Cyber Security + +### Projects + +- DevOps + +### Profile Link + +[jeraldlyh](https://github.com/jeraldlyh) diff --git a/script/jerald.py b/script/jerald.py new file mode 100644 index 0000000..e3164e8 --- /dev/null +++ b/script/jerald.py @@ -0,0 +1,7 @@ +# Simplest way to print Hello World in Python + +def main(): + print('Hello World') + +if __name__ == "__main__": + main() \ No newline at end of file From e146f988364323615057b0f9cbc1cfef98ce5661 Mon Sep 17 00:00:00 2001 From: Jerald Date: Sun, 18 Oct 2020 01:45:15 +0800 Subject: [PATCH 2/2] New contribution for Python --- script/jerald.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/script/jerald.py b/script/jerald.py index e3164e8..d806bc2 100644 --- a/script/jerald.py +++ b/script/jerald.py @@ -1,5 +1,10 @@ # Simplest way to print Hello World in Python +# LANGUAGE: Python +# ENV: Script.py +# AUTHOR: Jerald +# GITHUB: https:#github.com/jeraldlyh + def main(): print('Hello World')