apt-get update
apt-get install gcc
nano hello.c
gcc hello.c -o hello
ls -l
chmod 755 hello
./hello
to run the program
nano helloBash
#!/bin/bash echo "Hello World"
ls -l
chmod 755 helloBash
./helloBash
to run the program
apt-get update
apt-get install python
nano helloPt.py
print "Hello World"
python helloPt.py