Blog

Hello, world!

Hi, everyone! My name is Arianna Story, and I’m a software engineer in North Carolina… although, if you’re reading this far into my website, you’ve probably figured that out by now.

I don’t really have anything particular to talk about here just yet, so I’m going to just write out Hello, world! in a few of the languages that I’m familiar with. This definitely isn’t a way for me to test the syntax highlighter that I’ve got installed. I promise. 🤞🏻

# Python
print('Hello, world!')
<?php
   // PHP
   echo "Hello, world!";
/* Java */
class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, world!"); 
    }
}
// JavaScript
console.log('Hello, world!');