I installed Sparky Linux 7 on my backup laptop computer because I failed to install Debian.
Maybe Sparky Linux …
Normally, I use Debian. However, Debian 12 installer didn’t work on my Acer Extensa 💻. So I installed Sparky Linux, and it works.
People claiming Linux isn’t a viable alternative cause you can’t run it without using the command line.
Even in 2024, many people begin using GNU/Linux with Arch Linux or Ubuntu with apt-get, then later they complain that Linux is not for average users. Maybe the community needs more GUI only tutorials.
I’m using Lenovo ThinkBook, which is cheaper than Thinkpad, and the keyboard layout is different. It supports upto 40GB of RAM.
What Lisp programming languages do you use?
What non-Lisp programming languages do you use?
Rust, etc.
What is your favorite Lisp programming language? Why?
SBCL can compile Common Lisp into optimized native code and the community provides libraries that I need.
What is your favorite non-Lisp programming language? Why?
Ruby can be used as AWK with JSON parser and Unicode support.
What is that one thing about your favorite non-Lisp language that you wish to see in your favorite Lisp language?
Awk-style one-liner
#[allow(unused_assignments)]
Thank you. This works!
It doesn’t work, at least, on rustc 1.75.
Clippy didn’t tell anything about the macro.
warning: dereferencing a tuple pattern where every element takes a reference
--> src/lib.rs:13:9
|
13 | &Some(ref cons_rc) => {
| ^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference
= note: `#[warn(clippy::needless_borrowed_reference)]` on by default
help: try removing the `&` and `ref` parts
|
13 - &Some(ref cons_rc) => {
13 + Some(cons_rc) => {
|
To put #[allow(this_linting_rule)] like this:
[ $x:expr, $( $y:expr ),* ] => {
#[allow(unused_assignments)]
{
I got error[E0658]: attributes on expressions are experimental.
To put it like this:
#[macro_export]
#[allow(unused_assignments)]
macro_rules! list {
() => {
None
It doesn’t work.
No, it is not.