lisp

162 readers
1 users here now

Discussions on the LISP programming language

founded 2 years ago
MODERATORS
SDF
1
 
 

Lisp, totally misused. The code and the comments may or may not be real.

2
 
 
3
11
lisp season (lemmy.sdf.org)
submitted 2 years ago by pmjv to c/lisp
 
 

legally distinct Buggy Bunny and Duff ducky argue about LISP SEASON.

4
5
submitted 2 years ago* (last edited 2 years ago) by screwtape to c/lisp
 
 

I do use code like I tooted there. Hex UTF-8 ~aesthetic, ~<Indentation levels~>, c~@(~s~)ses, READ~s, ~{ite~r~ation~^ ~}, conditional~:[s~], wor~d/numbe~rs, ~/function:calls/, goto (~*well they're not all boring). Links or lemmy-replies (leplies?) to formatted output controls?

5
2
submitted 2 years ago* (last edited 2 years ago) by screwtape to c/lisp
 
 

On my show this week I am looking at a few people's Common Lisp mathematical packages (including mine).

So far, I am the only one I am seeing using :package-inferred-system . François-René Rideau 's style guide https://github.com/fare/asdf/blob/master/doc/best_practices.md#package_inferred simply echoes the ASDF manual on it (or vice versa) as a thing you could do.

The practical difference I have found is recompiling and reloading changed files within one lisp image using :force t

(asdf:operate 'asdf:load-op "my-system/src/changed-package-file" :force t)

Instead of restarting my lisp. (without force, an already loaded package won't be recompiled and reloaded, it will just be left alone)

To some extent it is also an encouragement to use the feature rich uiop:define-package and corrollary support for understanding dependencies between files/packages in a given asdf system, though uiop:define-package can be subbed for 'defpackage without using :package-inferred-system .

What's your call / experience here ?