summaryrefslogtreecommitdiff
path: root/sandbox
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox')
-rwxr-xr-xsandbox44
1 files changed, 22 insertions, 22 deletions
diff --git a/sandbox b/sandbox
index 68302f9..94cfba5 100755
--- a/sandbox
+++ b/sandbox
@@ -2,7 +2,7 @@
-L . -s
!#
-;;; guile-2d
+;;; Sly
;;; Copyright (C) 2014 David Thompson <dthompson2@worcester.edu>
;;;
;;; This program is free software: you can redistribute it and/or
@@ -19,32 +19,32 @@
;;; along with this program. If not, see
;;; <http://www.gnu.org/licenses/>.
-;; Include almost every guile-2d module for convenience.
-(use-modules (2d agenda)
- (2d audio)
- (2d color)
- (2d coroutine)
- (2d font)
- (2d fps)
- (2d game)
- (2d keyboard)
- (2d mouse)
- (2d rect)
- (2d signal)
- (2d sprite)
- (2d texture)
- (2d transform)
- (2d vector2)
- (2d window)
- (2d repl))
+;; Include almost every Sly module for convenience.
+(use-modules (sly agenda)
+ (sly audio)
+ (sly color)
+ (sly coroutine)
+ (sly font)
+ (sly fps)
+ (sly game)
+ (sly keyboard)
+ (sly mouse)
+ (sly rect)
+ (sly signal)
+ (sly sprite)
+ (sly texture)
+ (sly transform)
+ (sly vector2)
+ (sly window)
+ (sly repl))
-(start-2d-repl)
+(start-sly-repl)
(add-hook! window-close-hook stop-game-loop)
-(display "Welcome to the guile-2d sandbox. Happy hacking!\n")
+(display "Welcome to the Sly sandbox. Happy hacking!\n")
-(with-window (make-window #:title "Guile-2D Sandbox")
+(with-window (make-window #:title "Sly Sandbox")
(start-game-loop))
(display "Bye!\n")