Last active
February 24, 2019 18:53
-
-
Save jeantimex/8705f04991949cb01d0e52d3affb56e3 to your computer and use it in GitHub Desktop.
SwiftyLib.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// SwiftyLib.swift | |
// | |
public final class SwiftyLib { | |
let name = "SwiftyLib" | |
public func add(a: Int, b: Int) -> Int { | |
return a + b | |
} | |
public func sub(a: Int, b: Int) -> Int { | |
return a - b | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
SwiftyLib.swift