Sha256: 270d7949c1c637b12cd639b879ef4caa8c395359efd68f8e204e079c577c7dbc
Contents?: true
Size: 679 Bytes
Versions: 80
Compression:
Stored size: 679 Bytes
Contents
module ComplexNumbers let create real imaginary = failwith "You need to implement this function." let mul z1 z2 = failwith "You need to implement this function." let add z1 z2 = failwith "You need to implement this function." let sub z1 z2 = failwith "You need to implement this function." let div z1 z2 = failwith "You need to implement this function." let abs z = failwith "You need to implement this function." let conjugate z = failwith "You need to implement this function." let real z = failwith "You need to implement this function." let imaginary z = failwith "You need to implement this function." let exp z = failwith "You need to implement this function."
Version data entries
80 entries across 80 versions & 1 rubygems