No problem.
On Mon, Sep 30, 2013 at 9:11 AM, Daniel Meneses wrote:
> thanks !!
>
>
> On Saturday, September 28, 2013 9:57:13 PM UTC-3, Ambrose
> Bonnaire-Sergeant wrote:
>
>> The or syntax should be {lastname "Meneses"}
>>
>> Thanks,
>> Ambrose
>>
>>
>> On Sun, Sep 29, 2013 at 8:54 AM, Daniel M
thanks !!
On Saturday, September 28, 2013 9:57:13 PM UTC-3, Ambrose Bonnaire-Sergeant
wrote:
>
> The or syntax should be {lastname "Meneses"}
>
> Thanks,
> Ambrose
>
>
> On Sun, Sep 29, 2013 at 8:54 AM, Daniel Meneses Báez
>
> > wrote:
>
>> I think that the second and third lines in the followi
The or syntax should be {lastname "Meneses"}
Thanks,
Ambrose
On Sun, Sep 29, 2013 at 8:54 AM, Daniel Meneses Báez wrote:
> I think that the second and third lines in the following example should
> yield the same output...
>
> *user=> (defn my-name [& {:keys [name lastname] :or {:lastname
> "Men
I think that the second and third lines in the following example should
yield the same output...
*user=> (defn my-name [& {:keys [name lastname] :or {:lastname "Meneses"}}]
(str name " " lastname))*
*#'user/my-name*
*user=> (my-name :name "Daniel" :lastname "Meneses")*
*"Daniel Meneses"*
*user=> (