-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Labels
Description
One idea I had (and something I've been wanting to try for a while) is using coconut instead of normal python. Coconut is a kind of "extended" python with some extra features. So all code that runs in python will run in coconut as well, but it also has pipe operators (like %>% in R and dplyr):
4 |> maths.sqrt() |> printis equivalent to:
print(maths.sqrt(4))Since we're making a pipeline, having a pipe operator could be cool 😃
Reactions are currently unavailable