Hello world!

PUBLISHED ON JUL 31, 2014 — MISC

What kind of a programmer would I be if I didn’t start with a good ol' “hello world”?

function greet(name) {
  alert("Hello " + name + "!");
}
greet("world");