Controversial understanding -- Top

Unleash Brain Potential <GiannaDoyle@cortlandcerebralclinic.com> Mon, 23 March 2015 14:31 UTC

Return-Path: <GiannaDoyle@akmk.cortlandcerebralclinic.com>
X-Original-To: ietfarch-krb-wg-archive@ietfa.amsl.com
Delivered-To: ietfarch-krb-wg-archive@ietfa.amsl.com
Received: from localhost (ietfa.amsl.com [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6E1B71A8ABE for <ietfarch-krb-wg-archive@ietfa.amsl.com>; Mon, 23 Mar 2015 07:31:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.012
X-Spam-Level:
X-Spam-Status: No, score=-0.012 tagged_above=-999 required=5 tests=[BAYES_40=-0.001, HTML_MESSAGE=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_RP_MATCHES_RCVD=-0.01] autolearn=ham
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9OGdKIA4aGSX for <ietfarch-krb-wg-archive@ietfa.amsl.com>; Mon, 23 Mar 2015 07:31:31 -0700 (PDT)
Received: from akmk.cortlandcerebralclinic.com (akmk.cortlandcerebralclinic.com [78.159.151.39]) by ietfa.amsl.com (Postfix) with ESMTP id 4FA8A1A8AE4 for <krb-wg-archive@lists.ietf.org>; Mon, 23 Mar 2015 07:31:23 -0700 (PDT)
To: <krb-wg-archive@lists.ietf.org>
Date: Mon, 23 Mar 2015 06:31:18 -0800
From: Unleash Brain Potential <GiannaDoyle@cortlandcerebralclinic.com>
Reply-to: <DoyleGianna@cortlandcerebralclinic.com>
Subject: Controversial understanding -- Top
Message-ID: <20150323060821812.42.SES.85674134176@akmk.cortlandcerebralclinic.com>
Content-Type: multipart/alternative; boundary="===============7498809585268461750=="
MIME-Version: 1.0

If you could send me the papers we talked about yesterday that would be fine. Jamie was not able to make the meeting at 7PM so we moved it to 8PM. Tell Sam we said happy birthday.

Breaking StoryApproved Brain Booster sells out in minutes.... 

(FOX)-- As controversy grows so does interest in this ground-breaking memory-enhancer () that has everyone talking. Even Bill Gates and Warren Buffet.

View More (http://www.cortlandcerebralclinic.com/72097/convicts-muggs_66293_196_gravimetric.php)


"We could not believe the interest in this latest breakthrough.", said John Malcomb, spokesman for E-commerce Online.

The reason is, this brain booster is attributed to increasing brain function up to 90%. Many people can't find it online anymore so they are calling local stores and getting put on waiting lists.





Sound Off: If you could get your hands on this would you try it?
http://www.cortlandcerebralclinic.com/72097/convicts-muggs_66293_196_gravimetric.php

I'm sure it's only for fun, no one would use it in practice :)

One minor issue though: prepend is private. So either do Fixnum.send(:prepend, PlusOne), or class Fixnum; prepend PlusOne; end

weather

U.S. || World || Tech || Living || Copyright 2015 CMM Source ||
216 Thomposon // Ave // Palmyra // MO--63461 Krb-wg-archive Mail Settings (http://www.cortlandcerebralclinic.com/018/yearning-507_isogamy-9513/scrive.htm) ||

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-==-=-=-==-=-=-==-=
I would argue that this doesn't correspond to the recness of the function. This is about scope of visibility of definition in the body of the structure, but rec is about the body of the function. So, this issues are relative, but different.  ivg Mar 1 at 19:32

rec is not for function but for any definition. let rec a = 1 :: a is a valid recursive defintion with no function involved.  Thomash Mar 1 at 22:11
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-==-=-=-==-=-=-==-=
I agree, bad wording, but still, the same applies if you substitute "function" with "let-definition"  ivg Mar 1 at 22:56
2
Um, you are allowed to do that in Haskell (and there might be a Num instance where it works), but it usually doesn't terminate on evaluation.  Bergi Mar 1 at 23:17
1
@ivg What does rec do besides making the name of the defined object available in the body of the definition, in practice? Nothing. It's purely a scope issue. (I'm talking from a developer point of view, under the hood there might optimizations done in some cases or not, but that's not my point.)