This repository contains a basic project setup for the word count code kata.
This repository is configured to work with Visual Studio Code and Development Containers.
Please make sure to have the following installed and configured:
For more information have a look at: https://code.visualstudio.com/docs/devcontainers/containers
Implement a console application to count the number of words in a text. The app shall ask for the text upon start. It shall then output the number of words found in the given text.
Example usage:
$ dotnet run --project src/WordCount.csproj
Please enter the text: Mary had a little lamb
Number of words: 5
$
Ask your trainer / facilitator how the kata will continue.