cjnevin / WordplaysLookup

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WordplaysLookup

Finds definitions of words on the 'Wordplays.com' website and returns the first definition.

WordplaysLookup.find(word: "example") { definition in
  guard let definition = definition else {
    print("Word was not found")
    return
  }
  print(definition)
}

About

License:MIT License


Languages

Language:Swift 88.6%Language:Objective-C 11.4%