RosettaCodeData/Task/Assertions/Swift/assertions.swift
2016-12-05 23:44:36 +01: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