Recent | Popular
#software #softwaredevelopment #usa #uk #technology #appdevelopment #gamedevelopment #gaming #itservices #webassembly #ios #lisp #rubyonrails #flutter #springframework #drupal #vue.js
#lisp
sudo apt remove --purge emacs-bin-common emacs-el emacs-gtk
(set-frame-font "Inconsolata 12" nil t)
CL-USER 9 > (defun x (c) (let ((i 4)) ; defining/binding local variable i (loop while (< i 10) do (print i) (incf i)))) X CL-USER 10 > (x :foobar) 4 5 6 7 8 9 NIL
(screen:clear-window (screen:make-window))
(define (quicksort lst op) (if (null? lst) lst (let* ((one (car lst)) (left (filter (lambda (x) (op x one)) (cdr lst))) (right (filter (lambda (x) (not (op x one))) (cdr lst)))) (append (quicksort left op) (list one) (quicksort right op)))))
Fri Nov 08 2024 06:05:57 GMT+0000 (Coordinated Universal Time) https://technoderivation.com/sports-betting-app-development
Thu Mar 16 2023 18:21:03 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/57895073/how-remove-emacs-full
Sat Oct 23 2021 04:22:28 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/6026713/how-do-i-change-emacs-default-font-size-and-font-type
Wed Oct 20 2021 21:04:55 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/49461861/initialize-counter-variable-in-common-lisp
Wed Oct 20 2021 20:54:52 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/4882361/which-command-could-be-used-to-clear-screen-in-clisp