The page is up
Welcome everyone! Here is my blog/development update page, you know, the normal. Anyway this is just a first post, yippee!
Tests
Since this is the first post, I just want to make sure everything is working, hopefully the site should look better later
Javascript code
const {hello_world} = require("my_module");
if (hello_world === "Hello world!") {
console.log("Module returns \"Hello world!\"")
} else {
console.log("Module doesn't return \"Hello world!\"")
}
Python code
from my_module import hello_world
if hello_world == "Hello world!":
print("Module returns \"Hello world!\"")
else:
print("Module doesn't return \"Hello world!\"")