This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; blackjack.lisp | |
;; Copyleft Matthew Ball (2013) | |
(defclass card () | |
((value :accessor card-value | |
:initarg :name) | |
(suit :accessor card-suit | |
:initarg :suit))) | |
(defclass deck () |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; ___ _ __ ___ __ ___ | |
; / __|_ _ __ _| |_____ / /| __|/ \_ ) | |
; \__ \ ' \/ _` | / / -_) _ \__ \ () / / | |
; |___/_||_\__,_|_\_\___\___/___/\__/___| | |
; An annotated version of the snake example from Nick Morgan's 6502 assembly tutorial | |
; on http://skilldrick.github.io/easy6502/ that I created as an exercise for myself | |
; to learn a little bit about assembly. I **think** I understood everything, but I may | |
; also be completely wrong :-) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* CONWAY'S GAME OF LIFE FOR REXX */ | |
/* FOR BREXX ON MVS 3.8 and VM */ | |
/* COPYRIGHT 2024 BY MOSHIX */ | |
/* BREXX.V2R3M3.SAMPLES(#TSOAPPL) */ | |
/* Modified by KWC Ver 0.1 */ | |
CALL IMPORT FSSAPI | |
ADDRESS FSS |
OlderNewer