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

CSpydr

< >

CSpydr is a programming language created in 2021 by Spydr06.

#1465on PLDB 3Years Old
Download source code:
git clone https://github.com/spydr06/cspydr
HomepageSource Code

A static typed low-level compiled programming language inspired by Rust and C


Example from the web:
# fibonacci.csp import "io.csp"; fn fib(n: i32): i32 { let a = 0; let b = 0; for 0 .. n { a + b |> (a = b, b = $); } <- a; } fn main(): i32 { let n = 10; std::io::printf("fib(%i) = %i\n", n, fib(n)); <- 0; }

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

Built with Scroll v144.0.0