What is Environments?
TIA, Bruce On 2013-07-08 5:00 AM,
[hidden email] wrote:
Send Beginners mailing list submissions to [hidden email] To subscribe or unsubscribe via the World Wide Web, visit http://lists.squeakfoundation.org/mailman/listinfo/beginners or, via email, send a message with subject or body 'help' to [hidden email] You can reach the person managing the list at [hidden email] When replying, please edit your Subject line so it is more specific than "Re: Contents of Beginners digest..." Today's Topics: 1. Re: Scope? (Sean P. DeNigris) ---------------------------------------------------------------------- Message: 1 Date: Sun, 7 Jul 2013 17:41:14 -0700 (PDT) From: "Sean P. DeNigris" [hidden email] Subject: [Newbies] Re: Scope? To: [hidden email] Message-ID: [hidden email] Content-Type: text/plain; charset=us-ascii Casey Ransberger-2 wroteI think Squeak and Pharo are running Environments nowNo namespaces yet for Pharo... ----- Cheers, Sean -- View this message in context: http://forum.world.st/Scope-tp4694748p4697757.html Sent from the Squeak - Beginners mailing list archive at Nabble.com. ------------------------------ _______________________________________________ Beginners mailing list [hidden email] http://lists.squeakfoundation.org/mailman/listinfo/beginners End of Beginners Digest, Vol 87, Issue 4 **************************************** _______________________________________________ Beginners mailing list [hidden email] http://lists.squeakfoundation.org/mailman/listinfo/beginners |
It's an implementation of namespaces. In other languages, at the top of your file, you'll often see things like... #include <math.h>
or require "Foo" or import x.y.z Environments basically does that for Smalltalk. It's a way of breaking up the global namespace into smaller namespaces which don't ordinarily need to share state or behavior. I haven't used it yet myself though, so that's the limit of what I know about it, and I may be wrong about the various details.
On Mon, Jul 8, 2013 at 11:00 AM, Bruce Prior <[hidden email]> wrote:
Casey Ransberger _______________________________________________ Beginners mailing list [hidden email] http://lists.squeakfoundation.org/mailman/listinfo/beginners |
Free forum by Nabble | Edit this page |