<?xml version="1.0"?>
<paste-with-annotations>
  <paste>
    <number>
      <integer>68454</integer>
    </number>
    <user>
      <string>fugue88</string>
    </user>
    <title>
      <string>returns</string>
    </title>
    <contents>
      <string>(defun my-func ()
  (if cond1
    (return-from my-func (calc-a-return-value)))
  (if cond2
    (return-from my-func (calc-a-different-one)))
  (if cond3
    (return-from my-func (foo)))
  (bar))

;; same as previous, if returning from a func</string>
    </contents>
    <universal-time>
      <integer>3432922408</integer>
    </universal-time>
    <channel>
      <string>#lispcafe</string>
    </channel>
    <colorization-mode>
      <string></string>
    </colorization-mode>
    <maybe-spam>
      <null/>
    </maybe-spam>
    <is-unicode>
      <keyword>TRUE</keyword>
    </is-unicode>
    <deletion-requested>
      <null/>
    </deletion-requested>
    <deletion-requested-email>
      <null/>
    </deletion-requested-email>
    <expiration-time>
      <null/>
    </expiration-time>
  </paste>
  <annotation>
    <number>
      <integer>1</integer>
    </number>
    <user>
      <string>Serva</string>
    </user>
    <title>
      <string>get-neighbors-info</string>
    </title>
    <contents>
      <string>(setq maxrow 2)

(setq maxcol 4)

(defun get-neighbors-info (entire-graph row column)
  (let ((neighbors-exist nil))
    (if (&gt; (- row 1) 0)
        (cons neighbors-exist T)
      (cons neighbors-exist F))
    (if (&gt; (+ row 1) maxrow)
        (cons neighbors-exist T)
      (cons neighbors-exist F))
    (if (&gt; (- col 1) 0)
        (cons neighbors-exist T)
      (cons neighbors-exist F))
    (if (&gt; (+ col 1) 0)
        (cons neighbors-exist T)
      (cons neighbors-exist F))))

(get-neighbors-info graph 0 0)
</string>
    </contents>
    <universal-time>
      <integer>3432923348</integer>
    </universal-time>
    <channel>
      <string>#lispcafe</string>
    </channel>
    <colorization-mode>
      <string></string>
    </colorization-mode>
    <maybe-spam>
      <null/>
    </maybe-spam>
    <is-unicode>
      <keyword>TRUE</keyword>
    </is-unicode>
    <deletion-requested>
      <null/>
    </deletion-requested>
    <deletion-requested-email>
      <null/>
    </deletion-requested-email>
    <expiration-time>
      <null/>
    </expiration-time>
  </annotation>
</paste-with-annotations>
