C Test Runner in Go
AWIP: A C Test Runner Built with Go The idea for this project came to me when learning about Linux, C, data structures and algorithms. C is a simple language with far fewer features compared to languages like Java, Rust or even Go, so it’s no surprise that it doesn’t have a standard way to execute tests. This was one big feature I missed from Go, so I decided to make a test runner myself.
Hello World
Hello World! Until I hack together my own static site generator this page is generated using Hugo, with this theme.
package main import "fmt" func main() { fmt.Println("Hello World!") }