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
| i386 : iPhone Simulator | |
| x86_64 : iPhone Simulator | |
| arm64 : iPhone Simulator | |
| iPhone1,1 : iPhone | |
| iPhone1,2 : iPhone 3G | |
| iPhone2,1 : iPhone 3GS | |
| iPhone3,1 : iPhone 4 | |
| iPhone3,2 : iPhone 4 GSM Rev A | |
| iPhone3,3 : iPhone 4 CDMA | |
| iPhone4,1 : iPhone 4S |
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
| /* HTML code snippet | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>JS Bin</title> | |
| <script type="text/javascript" src="http://chorr.net/lib/js/assert.js"></script> | |
| <style> | |
| #results li.pass { color: green; } | |
| #results li.fail { color: red; } |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Listing 3.3</title> | |
| </head> | |
| <body> | |
| <ul id="results"></ul> | |
| <script type="text/javascript"> | |
| function stealthCheck(){ | |
| assert(stealth(), |
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
| ;; 데이터 정의: | |
| (define-struct circle (center radius)) | |
| (define-struct square (nw length)) | |
| ;; 도형(shape)은 다음 두 구조체 중 하나다. | |
| ;; 1. a structure: (make-circle p s) | |
| ;; p는 posn이고 s는 수다. | |
| ;; 2. a structure: (make-square p s) | |
| ;; p는 posn이고 s는 수다. | |
| ;; 계약, 목적, 헤더: |