Software

Much of my code really isn’t all that interesting, but maybe if I ever make some interesting programming video, I’ll put the software here. 90% of the fossoid git services are flaming garbage, but I’ve found a decent service, gitgud.io

#include <stdio.h>

int main() {
    int num = 1;
    printf("%s | %d", "Hello, World!", num);
    return 0;
}
package main

import "fmt"

func main() {
    num := 1
    fmt.Printf("%s | %d", "Hello, World!", num)
}