Skip to content

Commit

Permalink
Change age to 63.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdeisenberg committed Feb 27, 2017
1 parent 1585319 commit 9221ff8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions _sources/symbols.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ code, the ``println`` function (the name stands for “print line”) is used to
:caption: Define Symbol Bindings Here
:language: clojurescript

(def years 62)
(def years 63)
(def days (* 365 years))
(println days)

Expand Down Expand Up @@ -96,7 +96,7 @@ Again, in terms of meaningfulness, a name like ``ir`` would be far too short, an
:caption: Letters aren’t just A-Z
:language: clojurescript

(def лет 62)
(def лет 63)
(def дней (* лет 365))
(println дней)

Expand Down
4 changes: 2 additions & 2 deletions _sources/web_pages.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ Up to this point, your interaction with JavaScript has only been making calls to
(defn age-in-days [years]
(* years 365))

(age-in-days 62)
(age-in-days 63)

That works for me at my present age, but you probably aren’t 62 years old, and even if you are, next year both you and I will be older, so we will have to change the argument to ``age-in-days``. That’s OK for us; we’re programmers and we are cool with that :) We can’t, however, expect people using our programs to go rooting around in our code to get the results they want.
That works for me at my present age, but you probably aren’t 63 years old, and even if you are, next year both you and I will be older, so we will have to change the argument to ``age-in-days``. That’s OK for us; we’re programmers and we are cool with that :) We can’t, however, expect people using our programs to go rooting around in our code to get the results they want.

For people who are used to web pages, you want to write HTML like this:

Expand Down

0 comments on commit 9221ff8

Please sign in to comment.