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
| (in-package :common-lisp-user) | |
| (eval-when (:compile-toplevel :load-toplevel :execute) | |
| (ql:quickload :array-operations) | |
| (ql:quickload :rove)) | |
| (defpackage :dezero-naive.steps.step10 | |
| (:use :common-lisp) | |
| (:shadow :exp) | |
| (:export |
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
| (in-package :common-lisp-user) | |
| (eval-when (:compile-toplevel :load-toplevel :execute) | |
| (ql:quickload :array-operations)) | |
| (defpackage :dezero-naive.steps.step09 | |
| (:use :common-lisp) | |
| (:shadow :exp)) | |
| (in-package :dezero-naive.steps.step09) |
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
| (in-package :common-lisp-user) | |
| (eval-when (:compile-toplevel :load-toplevel :execute) | |
| (ql:quickload :array-operations)) | |
| (defpackage :dezero-naive.steps.step08 | |
| (:use :common-lisp)) | |
| (in-package :dezero-naive.steps.step08) | |
| (defgeneric call (function input)) |
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
| (in-package :common-lisp-user) | |
| (eval-when (:compile-toplevel :load-toplevel :execute) | |
| (ql:quickload :array-operations)) | |
| (defpackage :dezero-naive.steps.step07 | |
| (:use :common-lisp)) | |
| (in-package :dezero-naive.steps.step07) | |
| (defgeneric call (function input)) |
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
| (in-package :common-lisp-user) | |
| (eval-when (:compile-toplevel :load-toplevel :execute) | |
| (ql:quickload :array-operations)) | |
| (defpackage :dezero-naive.steps.step06 | |
| (:use :common-lisp)) | |
| (in-package :dezero-naive.steps.step06) | |
| (defgeneric call (function input)) |
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
| (in-package :common-lisp-user) | |
| (eval-when (:compile-toplevel :load-toplevel :execute) | |
| (ql:quickload :array-operations)) | |
| (defpackage :dezero-naive.steps.step04 | |
| (:use :common-lisp)) | |
| (in-package :dezero-naive.steps.step04) | |
| (defgeneric call (function input)) |
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
| <#PSScriptInfo | |
| .VERSION 0.6 | |
| .AUTHOR elderica | |
| .LICENSEURI https://opensource.org/license/mit | |
| #> | |
| <# | |
| .DESCRIPTION |
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
| (in-package :common-lisp-user) | |
| (eval-when (:compile-toplevel :load-toplevel :execute) | |
| (ql:quickload :array-operations)) | |
| (defpackage :dezero-naive.steps.step03 | |
| (:use :common-lisp)) | |
| (in-package :dezero-naive.steps.step03) | |
| (defgeneric call (function input)) |
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
| (in-package :common-lisp-user) | |
| (defpackage :dezero-naive.steps.step02 | |
| (:use :common-lisp)) | |
| (in-package :dezero-naive.steps.step02) | |
| (defgeneric call (function input)) | |
| (defgeneric forward (function x)) |
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
| (in-package :common-lisp-user) | |
| (defpackage :dezero-naive.steps.step01 | |
| (:use :common-lisp)) | |
| (in-package :dezero-naive.steps.step01) | |
| (defclass <variable> () | |
| ((data :initarg :data :accessor @data))) | |
| (defun <variable> (data) |