;;; bad.el --- boxing after dark -*- lexical-binding: t -*- ;; ;; Author: Emanuel Berg ;; Blog: https://dataswamp.org/~incal/bad-el ;; Created: 2024-08-24 ;; Keywords: games, terminals ;; License: GPL3+ ;; Version: 4.0.0 ;; ;;; Commentary: ;; _________________________________________ ;; | _____ _____ _ _ _ | ;; | | __ \ | __ \ / \ | | _ | | | ;; | | | | | | |__) | / _ \ | |/ \| | | ;; | | |__| | | __ < / ___ \ | _ | | ;; | |_____/ |_| |_| /_/ \_\ |__/ \__| | ;; | | ;; | dorks run away in the face of a warrior | ;; |_________________________________________| ;; ;; by incal ;; ;; bad-0: first home page 2024 summer [1] ;; bad-1: second home page 2024 fall [2] ;; bad-2: studio only, FPS++, one file 2025 winter [3] ;; bad-3: zooming, several files 2025 winter [etc] ;; bad-4: uith luki-lisp 2025 winter ;; ;; [1] https://dataswamp.org/~incal/bad-www ;; [2] https://dataswamp.org/~incal/bad-el ;; [3] https://dataswamp.org/~incal/bad-el/bad-3 [etc] ;; ;;; Code: (require 'cl-lib) (cl-pushnew "." load-path :test #'string=) (require 'luki-lisp) ;; -------------------------------------------------------------------------- (-> 'bad-lib) (-> 'bad-studio) ;; -------------------------------------------------------------------------- (defun bad-studio () (i) (bad-run (studio))) ;; -------------------------------------------------------------------------- (<- 'bad)