How to perform 'Count Vowels' in Verilog.
// Task: Count Vowels
// Language: Verilog
module count_vowels()
// Implementation for Count Vowels
reg result = ...; // Initialize variable
// TODO: Implement core logic here
// Step 1: Prepare data
// Step 2: Process Count Vowels
$display("Done");
endmodule