From c09fad5526ad0894e4d521b5a71101c977787cdc Mon Sep 17 00:00:00 2001 From: Jessyka Lage Date: Thu, 25 Oct 2018 20:16:48 -0300 Subject: [PATCH 1/2] Hello world python --- Python/helloWorld.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Python/helloWorld.py diff --git a/Python/helloWorld.py b/Python/helloWorld.py new file mode 100644 index 0000000..9eef966 --- /dev/null +++ b/Python/helloWorld.py @@ -0,0 +1,4 @@ +def helloWorld(): + print('Hello world! :)') + +helloWorld() From b0936cfd28d79f43b31d04ca394df32b71c735ae Mon Sep 17 00:00:00 2001 From: Jessyka Lage Date: Thu, 25 Oct 2018 20:24:36 -0300 Subject: [PATCH 2/2] Hello world JS --- JS/helloWorld.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 JS/helloWorld.js diff --git a/JS/helloWorld.js b/JS/helloWorld.js new file mode 100644 index 0000000..bff1395 --- /dev/null +++ b/JS/helloWorld.js @@ -0,0 +1,5 @@ +function hello_world() { + alert('Hello World'); +} + +hello_world(); \ No newline at end of file