• Make the directory week1
  • Make a file with any programming language to print hello world
    • gcc test.c; ./a.out
    • python test.py
    • go run test.go
    • ruby test.rb
    • node test.js
Solution

mkdir week1
cd week1
touch test.py
# Write the following code in test.py
python test.py