COMPUTER PROGRAMMING
Creating things out of thin air.
Juan David Vargas Mora
Programming is one of the only things in the
world that you can do where you can sit down
and just make something completely new from
scratch. Whatever you want. - Mark Zuckerberg
What is programming?
Teaching a computer how to do what you want to do.
Computers are stupid.
Problem breakdown.
It isnt that complicated.
Its almost like a superpower.
Programming languages
// Java.
#Python
int n1 = 5;
int n2 = 3;
int n3 = n1 + n2;
[Link](n3);
n1 = 5
n2 = 2
print (n1+n2)
Programming languages
#Ruby
hour = 19
if hour > 22
puts "Go to sleep!"
else
puts "Keep kicking it!"
end
<?php
$hour = 70;
if ($hour > 22) {
echo "Go to sleep!<br/>";
}
else {
echo "Keep at it.<br/>";
}
?>
The future is now.