Skip to content

Commit f944fe3

Browse files
authored
Added Racket (#59)
1 parent fb6a9bf commit f944fe3

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Calculating the **sum** from one to a billion in different programming languages
3131
- [PHP](PHP.php)
3232
- [R](R.r)
3333
- [Python](Python.py)
34+
- [Racket](Racket.rkt)
3435
- [Ruby](Ruby.rb)
3536
- [Rust](Rust.rs)
3637
- [Scala](Scala.scala)

Racket.rkt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#lang racket
2+
3+
(stream-fold + 0 (in-inclusive-range 0 1000000000))

0 commit comments

Comments
 (0)