elma_developer_test/main.go

17 lines
208 B
Go
Raw Normal View History

2022-09-16 13:48:36 +03:00
package main
import (
"fmt"
2022-11-17 09:27:47 +03:00
"gotest/FizzBuzz"
2022-09-30 23:35:21 +03:00
"gotest/consecutive"
)
2022-09-16 13:48:36 +03:00
func main() {
2022-09-30 23:35:21 +03:00
array := []int{1, 2, 4, 3, 6, 5}
2022-11-17 09:27:47 +03:00
fmt.Println("consecutive", consecutive.Consecutive(array))
2022-11-17 09:27:47 +03:00
FizzBuzz.Fizzbuzz()
2022-09-16 13:48:36 +03:00
}