Update README

This commit is contained in:
Zach Eriksen 2021-03-15 20:56:58 -05:00
parent 4cff143829
commit 106ab4fde1
1 changed files with 19 additions and 1 deletions

View File

@ -1,3 +1,21 @@
# SwiftFu
A description of this package.
*Swift Function Upgrades*
## Example
```swift
SomeClass()
.modify { (object) in
object.value = "Hello, World!"
}
.configure { (object) in
object.value += "++"
}
.func { _ in
SomeStruct(value: "New Value!")
}
.assert { (object) in
object.value == "New Value!"
}
.sout()
```