import Foundation
// Allocates 1MB of memory = 1,048,576 bytes
let pointer = UnsafeMutablePointer<UInt8>.allocate(capacity: 1024 * 1024)
print("Allocated 1MB of memory using UnsafeMutablePointer.")
pointer.deallocate() // Free memory after use
/*
run:
Allocated 1MB of memory using UnsafeMutablePointer.
*/