I love to code, to write something that can solve a simple problem or automate a task. If only life were that simple, but it’s not. Life can’t be solved by several thousand or millions of lines of code. Life doesn’t follow rules that make sense to me. So many variables with a limitless scope.
In my early years it was a sick endless infinite loop. Constantly trying to solve each new problem with the same bad solution. Here’s the simplest way I know to explain it.
<?php
function drink(){
$black_out = true;
$hurt_people = true;
sleep(5);
}
$pain = 1;
while ($pain > 0){
drink();
$pain++;
}
?>
A “Hello, World!” program generally is a computer program that outputs or displays the message “Hello, World!”. Such a program is very simple in most programming languages, and is often used to illustrate the basic syntax of a programming language. It is often the first program written by people learning to code.
<?php
echo "Hello World\n";
?>