<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>kazu-yamamoto</author_name>
  <author_url>https://blog.hatena.ne.jp/kazu-yamamoto/</author_url>
  <blog_title>あどけない話</blog_title>
  <blog_url>https://kazu-yamamoto.hatenablog.jp/</blog_url>
  <categories>
    <anon>プログラミング</anon>
    <anon>Emacs</anon>
    <anon>Lisp</anon>
  </categories>
  <description>Emacs Lisp の習得を目指す誰かの参考になるかもしれないので、僕なりの解答を書いておきます。 アルゴリズムの実装 繰り返しと仕事は分離したいので、まず仕事の部分を定義します。 (defun fizzbuzz (num) (cond ((= (% num 15) 0) &quot;FizzBuzz&quot;) ((= (% num 3) 0) &quot;Fizz&quot;) ((= (% num 5) 0) &quot;Buzz&quot;) (t num))) (fizzbuzz 1) ;; =&gt; 1 (fizzbuzz 3) ;; =&gt; &quot;Fizz&quot; (fizzbuzz 5) ;; =&gt; &quot;Buzz&quot; (fizzbuzz 15) ;; …</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Fkazu-yamamoto.hatenablog.jp%2Fentry%2F20080123%2F1201054339&quot; title=&quot;Emacs Lisp で FizzBuzz - あどけない話&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></image_url>
  <provider_name>Hatena Blog</provider_name>
  <provider_url>https://hatena.blog</provider_url>
  <published>2008-01-23 11:12:19</published>
  <title>Emacs Lisp で FizzBuzz</title>
  <type>rich</type>
  <url>https://kazu-yamamoto.hatenablog.jp/entry/20080123/1201054339</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
