Top 1K Features Creators Events Podcasts Books Extensions Interviews Blog Explorer CSV

Ripple

< >

Ripple is a programming language created in 2014 by Yuya Watari.

#1943on PLDB 10Years Old
Download source code:
git clone https://github.com/Ripple-Lang/Ripple
HomepageSource Code

Ripple is a programming language which is well designed for numerical simulations.


Example from the web:
// Stage // - A target object of this simulation stage n as long; // the number of mice // Parameter param c as int; // the number of mice which one mouse gives birth to // Initialization init { n<0> = 2; // n<0> means the value of n when time is 0 } // Operation // - Code which is executed every time (like recurrence formula) operation { n<next> = n<now> * c; // "now" and "next" are keywords in Ripple. next == now + 1. }

- Build the next great programming language Add About Search Keywords Livestreams Labs Resources Acknowledgements

Built with Scroll v144.0.0