RosettaCodeData/Task/Assertions/Swift/assertions.swift
2023-07-01 13:44:08 -04:00

6 lines
256 B
Swift

var a = 5
//...input or change a here
assert(a == 42) // aborts program when a is not 42
assert(a == 42, "Error message") // aborts program
// when a is not 42 with "Error message" for the message
// the error message must be a static string