diff --git a/contributors/sreejasaha19/demo_code.py b/contributors/sreejasaha19/demo_code.py new file mode 100644 index 000000000..571f332a5 --- /dev/null +++ b/contributors/sreejasaha19/demo_code.py @@ -0,0 +1,10 @@ +""" Basic python program to print hello world""" + + +def greet(): + + """Function to print Hello world""" + print("Hello world") + + +greet()