Just a test
Categories
Featured Image FB Test

Just a test
Text
Some text
Text
Just a test. Wonder if the public display name will show up?
This is just some text
Below, it’s a gallery
This is more text.
Start typing:
Käännös – Translation:
[code language=”go”]
package main
import “fmt”
func fact(n int) int {
if n == 0 {
return 1
}
return n * fact(n-1)
}
func main() {
fmt.Println(fact(7))
}
[/code]
[code language="go"]
package main
import "fmt"
func fact(n int) int {
if n == 0 {
return 1
}
return n * fact(n-1)
}
func main() {
fmt.Println(fact(7))
}
[/code]