Blog 2021/12/12
<- previous | index | next ->
Having come from Scheme, Clojure, and Janet, one of the things which struck me about Common Lisp
| /* | |
| hellox -- Hello world with Xlib. | |
| $(CC) -o hellox hellox.c -lX11 -L/usr/X11/lib | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> |
Blog 2021/12/12
<- previous | index | next ->
Having come from Scheme, Clojure, and Janet, one of the things which struck me about Common Lisp
| # by Matias I. Bofarull Oddo - 2022.04.20 | |
| # Inspired by Rafael Araujo's post: | |
| # https://twitter.com/rafaela31416/status/1509334444976779264?s=20&t=mswbmkrYcJzZC5_5pbir7A | |
| import matplotlib.pyplot as plt | |
| Φ = (1 + (5 ** (1 / 2))) / 2 | |
| X_square = [] |