No description
Find a file
2025-11-21 10:31:29 +01:00
fizzbuzz.go We have a passing test, CanSayFizzBuzz for 15 2023-11-27 07:00:00 +01:00
fizzbuzz_test.go We have a passing test, CanSayFizzBuzz for 15 2023-11-27 07:00:00 +01:00
go.mod initial project setup 2023-11-25 16:38:34 +01:00
LICENCE.md Added licence and readme 2023-11-27 08:31:06 +01:00
README.md update repo link 2025-11-21 10:31:29 +01:00

go-fizzbuzz

A FizzBuzz implementation in Go. The goal of the project is to teach TDD and SOLID principles using the FizzBuzz exercise.

Setup

Prerequisite

A working Go installation, git

Create Go enviroment

go mod init tdd/fizzbuzz

Clone the repo

git clone https://git.libretic.fr/nostradamnit/fizzbuzz-go.git

Run the tests

go test .