first commit

This commit is contained in:
joren
2026-03-23 10:28:54 +01:00
commit 3abc9aae55
109 changed files with 2467 additions and 0 deletions

16
pp1/main.rkt~ Normal file
View File

@@ -0,0 +1,16 @@
#lang r7rs
(import (scheme base)
(scheme write)
(pp1 graphics))
;;GUI;;
;window;
(define screen-width 600)
(define screen-height 700)
(define screen (make-window screen-width screen-height "PacMan"))
((screen 'set-background!) "black")
;pacman;
(define pacman_image (get-bitmap "/Users/yousraajridi/Desktop/pacman1.png"))
(define pacman (get-bitmap-section pacman_image 50 50 20 20))