How to perform 'Count Vowels' in Nim.
# Task: Count Vowels
# Language: Nim
proc count_vowels() =
# Implementation for Count Vowels
var result = ...; # Initialize variable
# TODO: Implement core logic here
# Step 1: Prepare data
# Step 2: Process Count Vowels
echo("Done");