If you already have Homebrew, just open a terminal and type
$ brew install clozure-cl
| #!/bin/bash | |
| # latest-firefox Version 1.3.9 | |
| # This script will find the latest Firefox binary package, download it | |
| # and repackage it into Slackware format. | |
| # I don't use Firefox for regular browsing but it is handy for | |
| # comparative tests against Vivaldi. :P | |
| # Copyright 2016 Ruari Oedegaard, Oslo, Norway |
If you already have Homebrew, just open a terminal and type
$ brew install clozure-cl
| (ql:quickload 'lispbuilder-sdl) | |
| (ql:quickload 'lispbuilder-sdl-gfx) | |
| (ql:quickload 'alexandria) | |
| (defparameter world (make-array '(100 100) :element-type 'fixnum)) | |
| ;; initialize | |
| (defun init-world! (world) | |
| (loop for i from 0 to (1- (array-dimension world 0)) do | |
| (loop for j from 0 to (1- (array-dimension world 1)) do |
| % -------------------------------------------------------------- | |
| % This is all preamble stuff that you don't have to worry about. | |
| % Head down to where it says "Start here" | |
| % -------------------------------------------------------------- | |
| \documentclass[12pt]{article} | |
| \usepackage[margin=1in]{geometry} | |
| \usepackage{amsmath,amsthm,amssymb} | |