Measures Concepts
GitHub icon

CSpydr

CSpydr - Programming language

< >

CSpydr is a programming language created in 2021 by Spydr06.

Source code:
git clone https://github.com/spydr06/cspydr
#1515on PLDB 3Years Old

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; }

View source

- Build the next great programming language Search Add Language Features Creators Resources About Blog Acknowledgements Queries Stats Sponsor Day 605 feedback@pldb.io Logout