Rip Programming Language
  • About
  • Downloads
  • Samples
  • FAQ
  • Roadmap
Subscribe
Tagged

System.Pipeline

A collection of 1 post

Semantics

Iteration

Rip supports a variety of interfaces for iterating over collections. ```language-rip numbers = 1..5 double = -> (n) { n + n } ```Setup code```language-rip result = System.List.map(double, numbers) ```Functional Syntax```language-rip result = numbers.map(double) ```Object Oriented Syntax```language-rip result = numbers |> System.List.map(double) ```Pipeline Syntax```language-rip

Thomas Ingram Nov 29, 2014 • 1 min read
Rip Programming Language © 2025
Powered by Ghost