Functional-programming enthusiast, author of Kind-Lang, HVM and Kindelia.
Highlights
- Pro
Block or Report
Block or report VictorTaelin
Report abuse
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusePinned
-
-
-
WebMonkeys Public
Massively parallel GPU programming on JavaScript, simple and clean.
-
A programming language and model of computation that matches the optimal λ-calculus reduction algorithm perfectly.
-
-
1,309 contributions in the last year
Less
More
Contribution activity
February 2022
Created 57 commits in 2 repositories
Created an issue in Kindelia/HVM that received 3 comments
Thread-safe synchronization of dup-related rewrite rules
The following program:
(Sum Nil ) = 0
(Sum (Cons x xs)) = (+ x (Sum xs)) (Mul Nil ) = 1
(Mul (Cons x xs)) = (* x (Mul xs)) (Main x) = let xs = (Con…
3
comments