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
| #lang racket/base | |
| ; Chapter 11 | |
| ;(define member? | |
| ; (lambda (a lat) | |
| ; (cond | |
| ; ((null? lat) #f) | |
| ; (else (or (eq? a (car lat)) | |
| ; (member? a (cdr lat))))))) |
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
| #lang racket/base | |
| ; Chapter 1 | |
| (define atom? | |
| (lambda (x) | |
| (and (not (pair? x)) (not (null? x))))) | |
| ; Chapter 2 |
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
| a='`@ぁァァぁ@`';26.times{print a=a.collect{++it}.join()} |
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
| a='`@\u3041\u30A1\u30A1\u3041@`';26.times{new PrintStream(System.out,!0,'utf8').print a=a.collect{++it}.join()} |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <Module> | |
| <ModulePrefs title="Gist"> | |
| <Require feature="dynamic-height"/> | |
| </ModulePrefs> | |
| <UserPref name="id" display_name="Gist ID" required="true" default_value="9088612"/> | |
| <UserPref name="font_size" display_name="Font size (px)" required="true" default_value="12"/> | |
| <UserPref name="line_height" display_name="Line height (px)" required="true" default_value="16"/> | |
| <Content type="html"> | |
| <![CDATA[ |
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
| <?xml version="1.0" encoding="UTF-8" ?> | |
| <Module> | |
| <ModulePrefs title="hello world example"> | |
| <Require feature="dynamic-height"/> | |
| </ModulePrefs> | |
| <Content type="html"> | |
| <![CDATA[ | |
| Hello, world! Updated! | |
| <script type="text/javascript"> | |
| gadgets.util.registerOnLoadHandler(gadgets.window.adjustHeight); |