This repository contains simple "Hello, World!" scripts in Python, Shell, and C to meet the specified project requirements.
hello_world.py
: Python scripthello_world.sh
: Shell scripthello_world.c
: C scriptlists.h
: Header file for C
Make sure the scripts are executable:
chmod +x hello_world.py
chmod +x hello_world.sh
gcc -Wall -Werror -Wextra -pedantic -std=gnu89 -o hello_world hello_world.c
chmod +x hello_world