Skip to content

Instantly share code, notes, and snippets.

@damodarnamala
Created April 12, 2022 08:47
Show Gist options
  • Select an option

  • Save damodarnamala/8f4decdcbfde7f772cf1e2a42d2b9ad0 to your computer and use it in GitHub Desktop.

Select an option

Save damodarnamala/8f4decdcbfde7f772cf1e2a42d2b9ad0 to your computer and use it in GitHub Desktop.
typealiasEffect
typealias Effect<A> = (A) -> A
var effect: Effect<String> = { str in
return str
}
// Ussage:
print(effect("Damodar"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment