Table of Contents
just like I eventually got to actually making my website, I will one day eventually get to writing an actual blog post, InshAllah.
for now enjoy these ‘hello, world!’ examples
Go
package main
import "fmt"
func main() { fmt.Println("hello, world!")}
Python
print("hello, world!")
C#
Console.WriteLine("Hello, World!");
TypeScript
console.log("hello, world!");
C++
#include "iostream"
int main() { std::cout << "hello, world!\n";}