beneroth changed the topic of #picolisp to: PicoLisp language | The scalpel of software development | Channel Log: https://libera.irclog.whitequark.org/picolisp | Check www.picolisp.com for more information
seninha has quit [Remote host closed the connection]
msavoritias has joined #picolisp
hrberg has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
hrberg has joined #picolisp
hrberg has quit [Client Quit]
hrberg has joined #picolisp
<tankf33der> Hi all
<tankf33der> abu[7]
<tankf33der> Is script up to date on wiki?
<abu[7]> No, but the current version is https://software-lab.de/irc.tgz
seninha has joined #picolisp
<tankf33der> Ok
alexshendi has joined #picolisp
seninha has quit [Ping timeout: 245 seconds]
seninha has joined #picolisp
pablo_escoberg has joined #picolisp
alexshendi has quit [Ping timeout: 252 seconds]
alexshendi has joined #picolisp
<pablo_escoberg> I find myself doing (split (chop foo) " ") a lot, so I created a method, sc, that combines the two.  It's totally trivial but will save me a ton of headaches.  Should something like that be in the standard distro, or am I the only one that ends up doing this a lot?
seninha has quit [Quit: Leaving]
msavoritias has quit [Remote host closed the connection]
alexshendi has quit [Quit: -a- IRC for Android 2.1.60]
seninha has joined #picolisp
pablo_escoberg has quit [Quit: Client closed]
seninha has quit [Quit: Leaving]
<aw-> pablo_escoberg: not really, in the lisp world those are called 'utility' functions, best kept outside the main distribution because they're very specific to each person. You can create something like utils.l and just add (load "utils.l") in your projects
<aw-> i have a whole bunch which I also load in all/most of my projects, it's much better to keep the actual language small and let people build their own utils/helpers/DSLs to suit their needs
<aw-> and for the record, i have one similar to your 'sc', but mine looks like this:
<aw-> (de tc-split-value (Value Separator)
<aw-> (mapcar pack
<aw-> (split (chop Value) Separator) ) )