# R has pipes via a library like dplyr
starwars %>% filter(species == "Droid")
echo "Hello world" > output.txt
"Elixir" |> String.graphemes() |> Enum.frequencies()
[1,2,3] |> (y -> f(3, y))
fn init {
x |> f // ç‰ä»·äºŽ f(x)
x |> f(y) // ç‰ä»·äºŽ f(x, y)
}
Languages with Pipes include R, Bash, Elixir, Julia, MoonBit, Speedie
Languages without Pipes include C3
View all concepts with or missing a hasPipes measurement
Read more about Pipes on the web: 1.