You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
re: PR #233 and Issues #205 & #229 (which I opened myself)
I think it would be nice to have all stub files be formatted like beer-song, and run-length-encoding. With each function having an appropriate arguments list and doc string. I think this would provide a good stating point for the less experienced of us.
I'm still don't know how to document non-function defs like triangle in pascals-triangle and proverb. I'd be happy to hear what more experienced Clojurists can suggest
What do you think? I'll be happy to work on it myself if people agree.
examples
beer-song.clj:
(ns beer-song)
(defn verse
"Returns the nth verse of the song."
[n])
(defn sing
"Given a start and an optional end, returns all verses in this interval. If
end is not given, the whole song from start is sung."
([start])
([start end]))
proverb.clj:
(ns proverb)
(def proverb "")
The text was updated successfully, but these errors were encountered:
re: PR #233 and Issues #205 & #229 (which I opened myself)
I think it would be nice to have all stub files be formatted like
beer-song
, andrun-length-encoding
. With each function having an appropriate arguments list and doc string. I think this would provide a good stating point for the less experienced of us.I'm still don't know how to document non-function
def
s liketriangle
in pascals-triangle and proverb. I'd be happy to hear what more experienced Clojurists can suggestWhat do you think? I'll be happy to work on it myself if people agree.
examples
beer-song.clj:
proverb.clj:
The text was updated successfully, but these errors were encountered: