Hello World
July 29, 2021
Heading H1
Hello, world! This is my first blog post ever.
Heading H2
This is an example post which shows off the Markdown
renderer.
Heading H3
This blog also comes with fancy code blocks and quotes like this!
Hey, look! We have some rendering!
import "fmt"
func FizzBuzz(n int) {
for i := 1; i < n; i++ {
s := ""
switch [2]bool{i%3 == 0, i%5 == 0} {
case [2]bool{true, true}:
s = "FizzBuzz"
case [2]bool{true, false}:
s = "Fizz"
case [2]bool{false, true}:
s = "Buzz"
default:
s = fmt.Sprint(int(i))
}
fmt.Println(s)
}
}