Источник: Structure and Interpretation of Computer Programs, by Abelson, Sussman, and Sussman — MIT.
- Lisp использует префиксную нотацию, вначале идет оператор, а потом операнды.
- Скобки обозначают выражение.
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "type": "node", | |
| "request": "launch", | |
| "name": "Hermione – chrome-desktop", | |
| "cwd": "${workspaceRoot}", | |
| "program": "${cwd}/node_modules/.bin/hermione", | |
| "args": [ |
| class RequestWithFetchAndProxy { | |
| constructor () { | |
| this._responses = []; | |
| this._errors = []; | |
| this._promise = Promise.resolve(); | |
| return new Proxy(this, { | |
| get (target, key, receiver) { | |
| if (key in target && typeof target[key] === 'function') { | |
| return function (...args) { |
| const streets = [ | |
| 'Абельмановская улица', | |
| 'площадь Абельмановская Застава', | |
| 'Абрамцевская просека', | |
| 'Абрамцевская улица', | |
| 'Абрикосовский переулок', | |
| 'Авангардная улица', | |
| 'улица Авиаконструктора Микояна', | |
| 'улица Авиаконструктора Миля', | |
| 'улица Авиаконструктора Сухого', |
| const hasOwnProperty = Object.prototype.hasOwnProperty; | |
| const toString = Object.prototype.toString; | |
| /** | |
| * Проверяет, что переданный объект является "плоским" (т.е. созданным с помощью "{}" | |
| * или "new Object"). | |
| * | |
| * @param {Object} obj | |
| * @returns {Boolean} | |
| */ |
| export PATH=/usr/local/bin:/usr/local/sbin:$PATH | |
| export NVM_DIR="$HOME/.nvm" | |
| . "/usr/local/opt/nvm/nvm.sh" | |
| export PATH="$HOME/.rbenv/bin:$PATH" | |
| eval "$(rbenv init -)" | |
| if [ -f $(brew --prefix)/etc/bash_completion ]; then | |
| . $(brew --prefix)/etc/bash_completion | |
| fi |
| { | |
| "Working Directory" : "\/Users\/gallo", | |
| "Prompt Before Closing 2" : 0, | |
| "Selected Text Color" : { | |
| "Green Component" : 0.2470588, | |
| "Blue Component" : 0.2941177, | |
| "Red Component" : 0.227451 | |
| }, | |
| "Rows" : 50, | |
| "Ansi 11 Color" : { |
Источник: Structure and Interpretation of Computer Programs, by Abelson, Sussman, and Sussman — MIT.