Re: namespace - multiple people

2018-02-10 Thread Nadeen Kurz
thanks Alex On Sat, Feb 10, 2018 at 11:57 AM, Alex Miller wrote: > There are other options to manage multiple projects without creating jars > using either local or git deps in clj. Don’t have time to give a full > example atm but just wanted to mention it. > >

Re: namespace - multiple people

2018-02-10 Thread Nadeen Kurz
thanks Justin On Sat, Feb 10, 2018 at 12:10 PM, Justin Smith wrote: > On further reflection, in most cases you can avoid defmulti and > defprotocol, and write functions that accept data and return data to > implement most of your logic. In that case a "stub" is simply a

Re: namespace - multiple people

2018-02-10 Thread Nadeen Kurz
rwise include it > on the classpath > > ;3) is there a link somewhere I can refer to for this type of information > > While there are a few options for build tools, Leiningen is popular; its > tutorial mostly covers this type of thing: https://github.com/ > technomancy/leiningen/blob/mas

namespace - multiple people

2018-02-10 Thread Nadeen Kurz
https://repl.it/repls/ZanyHoarseZebratailedlizard ; Dependency between two people ;assume I am working with Joe on a project, Joe is responsible for the functions in ;(ns map.core) which he creates in his local branch. ;I am responsible for the functions (ns mine.core) and I am dependent on

Re: Help please: New to clojure development

2018-02-07 Thread Nadeen Kurz
Thank you, appreciate it On Feb 7, 2018 12:16 AM, "Aditya Athalye" wrote: > Welcome to Clojure, Nadeen. > > A few friends and I created "Clojure by example" for programmers not > familiar with Clojure https://github.com/inclojure-org/clojure-by-example > > This is

Re: Help please: New to clojure development

2018-02-06 Thread Nadeen Kurz
{:st_abbrev "OH", :firstname "jay", :lastname > "louis"}]) > > (def state-names > {"AZ" "Arizona", "FL" "Florida", "OH" "Ohio"}) > > (defn state-desc3 [e] >

Re: Help please: New to clojure development

2018-02-06 Thread Nadeen Kurz
uot;) "OH" (assoc input-file :state "Ohio") "default"))) You could also write it as: (def state-names {"AZ" "Arizona", "FL" "Florida", "OH" "Ohio"}) (defn state-desc3 [input-file] (assoc

Help please: New to clojure development

2018-02-05 Thread Nadeen Kurz
Can someone help me with the following please: I am new to clojure and i haven't developed in 4 years, previous was mainframe. See questions in blue ; Task is to add full state name based on st_abbr (def input-file [{:st_abbrev "AZ", :firstname "john", :lastname "smith"}