jkwatson
01/01/2016, 12:13 AMfun getAThing(): String {
    val request: Request = Fuel.get("<http://httpbin.org/get>").responseString { request, response, result ->
        //do something with response
        result.fold({ d ->
            val endResult = d  // how do I return this from the function?
        }, { err ->
            //do something with error
        })
    }
    return ???
}