https://spectrum.ieee.org/at-work/innovation/the-2018-top-programming-languages
There are 256 programming languages in the world
There are 6,500 spoken languages in the world
Some languages are 'compiled' and some are 'interpreted'
program hello
print *, "Hello World!"
end program hello
#include <stdio.h>
int main()
{
printf("Hello, World!");
return 0;
}
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, World!";
return 0;
}
print("Hello, World!")
Let's really program!
We will use Trinket, an online Python interactive development environment (IDE)
We will program in Python2 and Python3. Huh?