<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>shigemk2</author_name>
  <author_url>https://blog.hatena.ne.jp/shigemk2/</author_url>
  <blog_title>by shigemk2</blog_title>
  <blog_url>https://www.shigemk2.com/</blog_url>
  <categories>
    <anon>Emacs Lisp</anon>
  </categories>
  <description>list、consか、クオートの3つの方法でリストを作る。 ;;; リストを作る (cons 1 (cons 2 (cons 3 nil))) ; =&gt; (1 2 3) (list 1 2 3) ; =&gt; (1 2 3) '(1 2 3) ; =&gt; (1 2 3) ;; リストに要素を追加するときは前から追加される (setq l (cons 3 nil)) ; =&gt; (3) (setq l (cons 2 l)) ; =&gt; (2 3) (setq l (cons 1 l)) ; =&gt; (1 2 3) ;; リストのcarは先頭、cdrは残りすべて (car '(1 2 3)) ; =&gt; 1 …</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Fwww.shigemk2.com%2Fentry%2F20120409%2F1333909456&quot; title=&quot;リストの作り方 - by shigemk2&quot; class=&quot;embed-card embed-blogcard&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;display: block; width: 100%; height: 190px; max-width: 500px; margin: 10px 0px;&quot;&gt;&lt;/iframe&gt;</html>
  <image_url>http://ecx.images-amazon.com/images/I/51Wg39T8KAL.jpg</image_url>
  <provider_name>Hatena Blog</provider_name>
  <provider_url>https://hatena.blog</provider_url>
  <published>2012-04-09 03:24:16</published>
  <title>リストの作り方</title>
  <type>rich</type>
  <url>https://www.shigemk2.com/entry/20120409/1333909456</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
