implement a curry function as follows:
first call: console.log (curry ("l")) / / cool
second call: console.log (curry () ("l")) / / coool
third call: console.log (curry () () ("l")) / / cooool
fourth call: console.log (curry () ("l")) / / coooool
.