Sha256: 292e52ea889b5ee7a7b52c45222cf81e1b77269570ec2131a0644e531d1f7b95

Contents?: true

Size: 739 Bytes

Versions: 53

Compression:

Stored size: 739 Bytes

Contents

# Word Count

Given a phrase, count the occurrences of each word in that phrase.

For example for the input `"olly olly in come free"`

```plain
olly: 2
in: 1
come: 1
free: 1
```


## Running the tests

To run the tests, run the command `busted .` from within the exercise directory.

## Further information

For more detailed information about the Lua track, including how to get help if
you're having trouble, please visit the exercism.io [Lua language page](http://exercism.io/languages/lua/about).

## Source

This is a classic toy problem, but we were reminded of it by seeing it in the Go Tour.

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

53 entries across 53 versions & 1 rubygems

Version Path
trackler-2.2.1.7 tracks/lua/exercises/word-count/README.md
trackler-2.2.1.6 tracks/lua/exercises/word-count/README.md
trackler-2.2.1.5 tracks/lua/exercises/word-count/README.md
trackler-2.2.1.4 tracks/lua/exercises/word-count/README.md
trackler-2.2.1.3 tracks/lua/exercises/word-count/README.md
trackler-2.2.1.2 tracks/lua/exercises/word-count/README.md
trackler-2.2.1.1 tracks/lua/exercises/word-count/README.md
trackler-2.2.1.0 tracks/lua/exercises/word-count/README.md
trackler-2.2.0.6 tracks/lua/exercises/word-count/README.md
trackler-2.2.0.5 tracks/lua/exercises/word-count/README.md
trackler-2.2.0.4 tracks/lua/exercises/word-count/README.md
trackler-2.2.0.3 tracks/lua/exercises/word-count/README.md
trackler-2.2.0.2 tracks/lua/exercises/word-count/README.md