Forwarded from A Math Book
Elementary Galois Theory.pdf
7.5 MB
Elementary Galois Theory: A Constructive Approach ( Marc Nieper-Wißkirchen ). Springer 2024
Also, importantly, the language really predates the notion that software itself might be a business, and certainly the notion that a programming language by itself would need or want to be sold separately. So the fact that it would not sell well was not exactly relevant. And what with free software and all, you can't much sell languages any more anyway, so it's come full circle and this is a strange time for anyone to have started complaining about how a language is packaged for sale.
And anyway, the subject line presupposes that Lisp has not caught on. This is like saying that astrophysics or calculus or brain surgery has not caught on because in relative numbers, there might be more people doing other things. The success of Lisp is not measured in the number of people using it, it's measured in the utility to those people who do use it. Turning it into C (or C++ or C#) to make it more popular would not be success. In the world's menu of computer language options, we don't need them all to be Taco Bell.
Kent Pitman on comp.lang.lisp
And anyway, the subject line presupposes that Lisp has not caught on. This is like saying that astrophysics or calculus or brain surgery has not caught on because in relative numbers, there might be more people doing other things. The success of Lisp is not measured in the number of people using it, it's measured in the utility to those people who do use it. Turning it into C (or C++ or C#) to make it more popular would not be success. In the world's menu of computer language options, we don't need them all to be Taco Bell.
Kent Pitman on comp.lang.lisp
Common Lisp Community Survey 2024 Results
https://blog.djhaskin.com/blog/common-lisp-community-survey-2024-results/
https://blog.djhaskin.com/blog/common-lisp-community-survey-2024-results/
sussmn-steele-art-of-interpreter.pdf
3.8 MB
Guy Lewis Steele Jr. & Gerald Jay Sussman, The Art of the Interpreter or, The Modularity Complex (1978)
(φ (μ (λ)))
sussmn-steele-art-of-interpreter.pdf
Guy Lewis Steele jr. & Gerald Jay Sussman, The Art of the Interpreter or, The Modularity Complex (1978)
#lang 2d racket
(require 2d/match)
(define (fizz? n)
(= 0 (modulo n 5)))
(define (buzz? n)
(= 0 (modulo n 3)))
(define (fizzbuzz n)
#2dmatch
╔═════════════════════╦══════════════╦════════════════════╗
║ (fizz? n) (buzz? n) ║ #t ║ #f ║
╠═════════════════════╬══════════════╬════════════════════╣
║ #t ║ "FizzBuzz" ║ "Buzz" ║
╠═════════════════════╬══════════════╬════════════════════╣
║ #f ║ "Fizz" ║ (number->string n) ║
╚═════════════════════╩══════════════╩════════════════════╝)
https://gist.github.com/nilp0inter/24b39c8372a90c92cea7e681162701d2
❤4
👍2🔥1
Forwarded from Programming Deadlock
How Does Ada's Memory Safety Compare Against Rust?
https://ajxs.me/blog/How_Does_Adas_Memory_Safety_Compare_Against_Rust.html
https://ajxs.me/blog/How_Does_Adas_Memory_Safety_Compare_Against_Rust.html
ajxs.me
How Does Ada's Memory Safety Compare Against Rust? - ajxs.me
A comparison of how well Rust and Ada prevent the most common memory-related software errors.