How to perform 'Standard Deviation' in Swift.
// Task: Standard Deviation
// Language: Swift
func standardDeviation() {
// Implementation for Standard Deviation
var result = ...; // Initialize variable
// TODO: Implement core logic here
// Step 1: Prepare data
// Step 2: Process Standard Deviation
print("Done");
}