Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
6
Task/Assertions/Swift/assertions.swift
Normal file
6
Task/Assertions/Swift/assertions.swift
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue