mastodon.xyz is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Mastodon instance, open to everyone, but mainly English and French speaking.

Administered by:

Server stats:

819
active users

#lambdacalculus

2 posts2 participants0 posts today

Lamber, my #LambdaCalculus -> Lisp compiler (github.com/aartaka/lamber) didn't handle big enough numbers (> 10-bit,) so I decided to implement some optimizations, reusing underlying #CommonLisp compiler to speed up and save space on numerics. It's not particularly reliable, because big LC numbers consume too much of the stack, but at least it's better than it used to be, almost reliably handling 12-bit numbers.

A functional scripting language compiling to pure Lambda Calculus - aartaka/lamber
GitHubGitHub - aartaka/lamber: A functional scripting language compiling to pure Lambda CalculusA functional scripting language compiling to pure Lambda Calculus - aartaka/lamber

#python lets ypu instantiate a function anywhere and a ( recursive) function definition can be self contained and last i checked its notorious for its type checking
#Lambdacalculus wont let you do that unyil you give it the required fixed point function
#typetheory
Oh and fixed point need not be in R
Unlike rieman zeta ?
OTOH python wont spit potential Nonsense

C-c-c-conjecturing, and dealing with recursion in Emacs (more excursus)

Another blog post, this one not tagged as part of the lambda-calculus series because it doesn't directly deal with lambda-calculus, but it follows on from Part 2, dealing with issues of recursion, and building up towards the #YCombinator and other #lambdacalculus issues.

Some fun things evaluating the efficiency of implementing different functions in #Elisp (with metrics!), and some fun images/visualisations of an interesting function.

The relationship between category theory, lambda calculus, and functional programming in Haskell. ~ Antonio Montano. 4m4.it/posts/category-theory-f #Haskell #FunctionalProgramming #CategoryTheory #LambdaCalculus

Random Bits of KnowledgeThe Relationship Between Category Theory, Lambda Calculus, and Functional Programming in Haskell – Random Bits of KnowledgeThis post explores the deep connections between functional programming, lambda calculus, and category theory, with a particular focus on composability, a foundational principle in both mathematics and software engineering. Haskell, a functional programming language deeply rooted in these mathematical frameworks, serves as the practical implementation of these concepts, demonstrating how abstract theories can be applied to build robust, scalable, and maintainable software systems. We present key concepts such as function composition, functors, monads, and cartesian closed categories, illustrating their significance in modern software development. Additionally, it highlights how formal composability, grounded in lambda calculus and category theory, is crucial for managing the growing complexity of software systems. The discussion extends to the future implications of formal composability in the context of machine learning and automated software development, emphasizing its potential to transform the way complex systems are designed and verified. Finally, the essay provides a comprehensive self-study path for those interested in mastering Haskell, category theory, and their applications in various domains, including secure coding, asynchronous systems, and blockchain technology.

#TIL that there's a #LambdaCalculus based language called brujin (for obvious reasons) and that it's absolutely unreadable! The standard library and the amount of work that went into it is extremely impressive though, so go give it a read:

bruijn.marvinborner.de/

and show some love to Marvin Borner, the creator of brujin!

I'm stealing parts of it (like Maybe monad) into #Lamber, my own applicative #LambdaCalculus compiling #Lua like language.

bruijn.marvinborner.debruijn programming languageFunctional programming language based on pure de Bruijn indexed lambda calculus.

Lamber (the WIP name of the language I'm making) compiles and runs factorial program:

let true = fn (t e) t
let false = fn (t e) e .
let iszero = fn (n)
n (fn x false) true .
let pred = fn (n f x)
n (fn (g h) h (g f))
(fn u x) (fn u u) .
let mult = fn (m n f) m (n f) .
let fac = fn : n
when : iszero n
then 1
else : mult n : fac : pred n
fac 6

Just so you know: Lamber is a #Lua, #Haskell, and #Wisp-inspired functional language compiling to pure #LambdaCalculus. And it's close to functioning well enough!