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
CL-USER> #" " と \. を含みます。"# | |
" \" と \\. を含みます。" | |
CL-USER> |
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
CL-USER> (segment-reader t #\/ 3) | |
あいう/えおか/きくけ/ | |
("あいう" "えおか" "きくけ") | |
CL-USER> |
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
cd ~/ | |
2 compiler notes: | |
lol-production-code.lisp:265:1: | |
error: | |
(during macroexpansion of (DEFMACRO! DLAMBDA ...)) | |
The function O!-SYMBOL-P is undefined. | |
lol-production-code.lisp:357:17: | |
read-error: |
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
CL-USER> (asdf:operate 'asdf:load-op :hello) | |
; loading system definition from /home/cametan/hello.asd into | |
; #<PACKAGE "ASDF0"> | |
; registering #<SYSTEM HELLO {AB3F071}> as HELLO | |
NIL | |
CL-USER> |
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
CL-USER> *h* | |
The variable *H* is unbound. | |
[Condition of type UNBOUND-VARIABLE] | |
; Evaluation aborted. | |
CL-USER> |
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 #:hello) | |
(defparameter *a* "hello, ") |
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
CL-USER> (print-name-of-function "Fuck off!!!") | |
FUCK-OFF | |
CL-USER> (fuck-off) | |
Fuck off!!! | |
"Fuck off!!!" | |
CL-USER> |
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
;; hello-system 「自体で」 :p-n-f パッケージが要り用になるわけではない事に注意 | |
(defpackage :hello-system (:use :asdf :cl)) | |
(in-package :hello-system) | |
(defsystem hello | |
:name "hello" | |
:author "" | |
:version "" | |
:maintainer "" | |
:licence "" |
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
; Arc Compiler. | |
(module ac mzscheme | |
(provide (all-defined)) | |
; uncomment the following require for mzscheme-4.x | |
; much of Arc will work, but not mutable pairs. | |
; (require rnrs/mutable-pairs-6) | |
(require (lib "port.ss")) | |
(require (lib "process.ss")) |
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
#!/usr/bin/env bash | |
mzscheme slisp.ss |
OlderNewer