How to perform 'Matrix Multiplication' in Crystal.
# Task: Matrix Multiplication
# Language: Crystal
def matrix_multiplication()
# Implementation for Matrix Multiplication
# TODO: Implement core logic here
# Step 1: Prepare data
# Step 2: Process Matrix Multiplication
puts("Done");
end