test-ci/main.go

12 lines
133 B
Go
Raw Normal View History

2026-04-24 11:47:24 -07:00
package main
import "fmt"
func Greet() string {
return "Astraevum Forge is online"
}
func main() {
fmt.Println(Greet())
}