We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb6a9bf commit f944fe3Copy full SHA for f944fe3
README.md
@@ -31,6 +31,7 @@ Calculating the **sum** from one to a billion in different programming languages
31
- [PHP](PHP.php)
32
- [R](R.r)
33
- [Python](Python.py)
34
+- [Racket](Racket.rkt)
35
- [Ruby](Ruby.rb)
36
- [Rust](Rust.rs)
37
- [Scala](Scala.scala)
Racket.rkt
@@ -0,0 +1,3 @@
1
+#lang racket
2
+
3
+(stream-fold + 0 (in-inclusive-range 0 1000000000))
0 commit comments