Skip to content

Instantly share code, notes, and snippets.

@jeantimex
Last active February 24, 2019 18:53
Show Gist options
  • Save jeantimex/8705f04991949cb01d0e52d3affb56e3 to your computer and use it in GitHub Desktop.
Save jeantimex/8705f04991949cb01d0e52d3affb56e3 to your computer and use it in GitHub Desktop.
SwiftyLib.swift
//
// 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
}
}
@jeantimex
Copy link
Author

SwiftyLib.swift

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment