├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── calculator.go ├── calculator_test.go ├── go.mod └── img ├── calculator.jpg ├── chained.png ├── cover_small.png ├── crash-dummy.png ├── hiking.png ├── mistake.png ├── music.png ├── rocket.png └── witch-learning.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfield/ftl-fundamentals/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfield/ftl-fundamentals/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfield/ftl-fundamentals/HEAD/README.md -------------------------------------------------------------------------------- /calculator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfield/ftl-fundamentals/HEAD/calculator.go -------------------------------------------------------------------------------- /calculator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfield/ftl-fundamentals/HEAD/calculator_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module calculator 2 | 3 | go 1.15 4 | -------------------------------------------------------------------------------- /img/calculator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfield/ftl-fundamentals/HEAD/img/calculator.jpg -------------------------------------------------------------------------------- /img/chained.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfield/ftl-fundamentals/HEAD/img/chained.png -------------------------------------------------------------------------------- /img/cover_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfield/ftl-fundamentals/HEAD/img/cover_small.png -------------------------------------------------------------------------------- /img/crash-dummy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfield/ftl-fundamentals/HEAD/img/crash-dummy.png -------------------------------------------------------------------------------- /img/hiking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfield/ftl-fundamentals/HEAD/img/hiking.png -------------------------------------------------------------------------------- /img/mistake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfield/ftl-fundamentals/HEAD/img/mistake.png -------------------------------------------------------------------------------- /img/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfield/ftl-fundamentals/HEAD/img/music.png -------------------------------------------------------------------------------- /img/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfield/ftl-fundamentals/HEAD/img/rocket.png -------------------------------------------------------------------------------- /img/witch-learning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfield/ftl-fundamentals/HEAD/img/witch-learning.png --------------------------------------------------------------------------------