by Rito Ghosh
6 July 2022
There are many places that teach you complex number like High School, college classes, YouTube channels, and so on.
| # $HOME/.config/alacritty/alacritty.toml | |
| # by Rito Ghosh 2023-10-06 | |
| # Alacritty now uses TOML formatting for its config files. | |
| # This is a simple example. | |
| # There are the specification here: https://github.com/alacritty/alacritty/blob/master/extra/man/alacritty.5.scd | |
| # It is not obvious how it translates to TOML. But it is extremely straightforward. | |
| # example: WINDOW, COLORS, etc. are tables, and should be represented as [window], [colors], respectively. |
by Rito Ghosh
6 July 2022
There are many places that teach you complex number like High School, college classes, YouTube channels, and so on.
| #lang racket | |
| (define (larger a b) | |
| (if (> a b) | |
| a | |
| b)) | |
| (define (square x) | |
| (* x x)) | |
| (define (sum-of-squares x y) |