This repository has been archived on 2025-12-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
garm-test-pipeline/cmd/main.go

17 lines
219 B
Go
Raw Normal View History

2024-12-16 11:49:51 +01:00
package main
import (
"apps/internal/http"
"log"
)
func main() {
err := http.StartServer()
log.Fatal(err)
//fmt.Println("20: ", fibonacci.Fibonacci(20))
//fmt.Println("200: ", fibonacci.FibonacciBig(200))
}