gnu-emacs-sources
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

rabbit.el


From: Ty Tenait
Subject: rabbit.el
Date: Fri, 9 Mar 2001 16:43:10 +0100

;;; rabbit.el --- Interactive simulation of rabbit hunting
 
;; Copyright (C) 2001 Ty Tenait.
 
;; Author: Ty Tenait (address@hidden)
;; Created: 9 Mar 2001
;; Version: 1.0
;; Keywords: hunting carnivore sisyphus ascii-art
 
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 2 of
;; the License, or (at your option) any later version.
 
;; This program is distributed in the hope that it will be
;; useful, but WITHOUT ANY WARRANTY; without even the implied
;; warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
;; PURPOSE.  See the GNU General Public License for more details.
 
;; You should have received a copy of the GNU General Public
;; License along with this program; if not, write to the Free
;; Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
;; MA 02111-1307 USA
 
(defun rabbit-hunt ()
  "Simulate rabbit hunting.
After invoking this command, hold down space to hunt."
  (interactive)
  (switch-to-buffer "large-green-field")
  (fundamental-mode)
  (delete-region (point-min) (point-max))
  (insert "\trabbit")
  (goto-char (point-min)))
 
(provide 'rabbit)

reply via email to

[Prev in Thread] Current Thread [Next in Thread]