The Renderx Tribune

Total Page:16

File Type:pdf, Size:1020Kb

The Renderx Tribune The RenderX Tribune RenderX News Lisp, the Programming Language W3C News 2006-05-15 2006-07-14 XEP 4.6 with AFP output Semantic Web Activity released. RenderX has re- "Lisp is a programmable program- A paper titled Common Lisp: Myths Grows to Include GRD- leased XEP 4.6, a new ver- ming language." -John Foderaro and Legends tries to confront and DL, Deployment Work- sion of its XSL processor dispel some of the myths and mistak- ing Groups W3C is and accompanying tools. en impressions associated with Lisp. pleased to announce the re- The new version intro- The paper promotes Xanalys©s Lisp newal of the Semantic duces AFP backend (avail- What is Lisp? products, but most of the arguments Web Activity. "W3C con- able with a special li- ISP is an acronym for LISt Pro- apply to other Common Lisp imple- tinues to support the ad- cense), improved line- Lcessing. Its development history mentations as well. vancement of universal breaking algorithm confor- has often been associated with sym- Kent Pitman©s More Than Just sharing and automatic pro- mant to the Unicode Stan- bolic processing and with both com- Words: Lambda, the Ultimate Politi- cessing of data in the dard Annex #14, and a puterandhumanlanguages.Ahetero- cal Party argues that Lisp is better World Wide Web," said new implementation of geneous list data type has always defined as its community than as its Ivan Herman (W3C). Se- XSL 1.1 change bars. been built into the language in order various specifications. mantic Web technologies XEPwin 2.0 has also been to efficiently deal with arbitrary and Lisp may be combined with other allow data to be shared and updated and includes XEP changing models. languages to produce wide variety of reused across applications, 4.6. From this basis, a number of fea- applications. enterprises, and communi- tures have come to be expected from There have been a number of com- ties. The W3C Advisory all members of the Lisp family of parisons between Lisp and other lan- Committee approved the languages: guages. continuing work in RDF Wikipedia Ð top-level in which code can be data access, rules inter- w In run change, and health care Tail recursion com- Ð decoupled syntax from seman- and life sciences. Three puter science, tail recur- tics Lisp History new groups are chartered isp was invented by John Mc- sion (or tail-end recursion) Ð compiled / interpreted for work on Semantic Web Carthy in the late 1950©s as a for- is a special case of recur- Ð language / libraries / environ- deployment, extracting Lmalism for reasoning about the use sion that can be easily ment RDF from XML (e.g., to of recursion equations as a model for transformed into an itera- Ð object-oriented / procedural processmicroformats),and computation. Of computer languages tion. Such a transformation Ð dynamic / static education and outreach. still in widespread use today, only is possible if the recursive Ð strong / weak typing Join W3C and visit the Se- FORTRAN is older. call is the last thing that Ð memory mangagement mantic Web home page. Lisp has evolved with the field of happens in a function. Re- Ð macros 2006-07-17 Computer Science, always putting placingrecursionwithitera- Ð effective use of computational W3C Names Yves Lafon the best ideas from the field into tion, either manually or au- resources Web Services Activity practical use. In 1994, Common Lisp tomatically, can drastically Ð 3GL/4GL/5GL LeadW3C has named became the first ANSI standard to in- decrease the amount of Lisp has evolved into a family of Yves Lafon to the position corporate object oriented program- stack space used and im- languages. The two major dialects in of Web Services Activity ming. prove efficiency. This use today are Common Lisp and Lead. The Web Services The early development of Lisp is technique is commonly Scheme. This web site deals mostly Activity includes Working described by McCarthy in "History used with functional pro- with Common Lisp. Groups for semantic anno- of Lisp", 1978. ...continued on page 2 ...continued on page 2 ...continued on page 2 AI Koans A novice was trying to fix a broken lisp garbage collector. We must keep a refer- ing at the PDP-6. "What are you doing?", machine by turning the power off and on. ence count of the pointers to each cons." asked Minsky. Knight, seeing what the student was doing Moon patiently told the student the follow- "I am training a randomly wired neural spoke sternly- "You can not fix a machine ing story- net to play Tic-Tac-Toe." by just power-cycling it with no under- "One day a student came to Moon and "Why is the net wired randomly?", asked standing of what is going wrong." said, "I understand how to make a better Minsky. Knight turned the machine off and on. garbage collector... "I do not want it to have any preconcep- The machine worked. tions of how to play" Minsky shut his eyes, In the days when Sussman was a novice "Why do you close your eyes?", Sussman One day a student came to Moon and said, Minsky once came to him as he sat hack- asked his teacher. "I understand how to make a better ...continued on page 4 RenderX Tribune, issue #2, July 20, 2006 Wikipedia (continued from page 1) Lisp, the Programming Language (continued from page 1) gramming languages where the declarative ap- Two of the major developers of the language since then, Richard Gabriel and Guy proach and explicit handling of state promote Steele, presented "The Evolution of Lisp" at the 1993 ACM History of Programming the use of recursive functions that rapidly fill Languages conference. the call stack. Kent Pitman and Brad Miller have compiled a brief on-line version of the history of Lisp from ANSI documents. Herbert Stoyan began his study of the history of Lisp in the early 1970s, while in East The word iteration is sometimes Germany. He carried out this study by writing letters to everyone whose name he could Iteration used in everyday English with a find in the documents as well as by getting every book and report he could. In 1979 he meaning virtually identical to repetition. applied to emigrate from East Germany, was arrested, spent six months in prison and Iteration in mathematics may refer to the pro- then was permitted to emigrate to West Germany. When he got out of East Germany, cess of iterating a function, or to the techniques he visited M.I.T. and examined every document he could find relevant to the history of used in iterative methods for solving numerical Lisp and also interviewed everyone he could. He is now Professor of Computer Science problems. at the University of Erlangen-Nuremberg in Erlangen, Germany, where his group works Iteration in computing is the repetition of a on AI. His history of Lisp is also on-line. process within a computer program. It can be used both as a general term, synonymous with repetition, and to describe a specific form of repetition with a mutable state. What is Lisp Good For? When used in the first sense, recursion is an NSI Common Lisp is a mature, thoughtfully conceived, highly portable, industrial- example of iteration, but typically using a recur- strength programming language which serious application developers worldwide sive notation, which is typically not the case for Ahave come to count on for: iteration. Ð Highly customizable "quick and dirty" utilities for doing everyday things. (i.e. as However, when used in the second (more re- the most powerful scripting language available). stricted) sense, iteration describes the style of Ð Large, complicated, mission critical applications which would be impossible to de- programming used in imperative programming velop in any other language. languages. This contrasts with recursion, which Ð Fast prototyping and Rapid Application Development (RAD). has a more declarative approach. Ð Continuous-availability applications, especially those that require functionality changes after initial deployment. It has had wide success in business process software, engineering, document processing, Call stack In computer science, a call hypermedia (including the WWW), mathematics, graphics and animation, artificial intel- stack is a special stack which stores informa- ligence and natural language processing. tion about the active subroutines of a computer It is sometimes used to define every aspect of an application, sometimes just the internal program. (The active subroutines are those processing engine (i.e. the guts, without the User Inteface), or sometimes just the user which have been called but have not yet com- interface. Sometimes it is used as the "glue" to interactively develop Graphical User pleted execution by returning.) This kind of Interfaces and sometimes to define graphics/windowing systems themselves. stack is also known as an execution stack, con- It is often used to provide interactive command languages, macro or scripting lan- trol stack, or function stack, and is often abbre- guages, and extension languages embedded within commercial systems. viated to just "the stack". It is widely used to programatically generate other, static, stand-alone applications, in A call stack is often used for several related the same or different language. It is also used to generate "mobile code". purposes, but the main reason for having one is Xanalys, a major commercial Lisp vendor, has placed an excellent paper titled Common to keep track of the point to which each active Lisp: Myths and Legends on their site. From the introduction: subroutine should return control when it finish- "This year, 1998, Lisp is celebrating its 40th year supporting the world©s most complex es executing.
Recommended publications
  • Praise for Practical Common Lisp
    Praise for Practical Common Lisp “Finally, a Lisp book for the rest of us. If you want to learn how to write a factorial function, this is not your book. Seibel writes for the practical programmer, emphasizing the engineer/artist over the scientist and subtly and gracefully implying the power of the language while solving understandable real-world problems. “In most chapters, the reading of the chapter feels just like the experience of writing a program, starting with a little understanding and then having that understanding grow, like building the shoulders upon which you can then stand. When Seibel introduced macros as an aside while building a test frame- work, I was shocked at how such a simple example made me really ‘get’ them. Narrative context is extremely powerful, and the technical books that use it are a cut above. Congrats!” —Keith Irwin, Lisp programmer “While learning Lisp, one is often referred to the CL HyperSpec if they do not know what a particular function does; however, I found that I often did not ‘get it’ just by reading the HyperSpec. When I had a problem of this manner, I turned to Practical Common Lisp every single time—it is by far the most readable source on the subject that shows you how to program, not just tells you.” —Philip Haddad, Lisp programmer “With the IT world evolving at an ever-increasing pace, professionals need the most powerful tools available. This is why Common Lisp—the most powerful, flexible, and stable programming language ever—is seeing such a rise in popu- larity.
    [Show full text]
  • The Evolution of Lisp
    1 The Evolution of Lisp Guy L. Steele Jr. Richard P. Gabriel Thinking Machines Corporation Lucid, Inc. 245 First Street 707 Laurel Street Cambridge, Massachusetts 02142 Menlo Park, California 94025 Phone: (617) 234-2860 Phone: (415) 329-8400 FAX: (617) 243-4444 FAX: (415) 329-8480 E-mail: [email protected] E-mail: [email protected] Abstract Lisp is the world’s greatest programming language—or so its proponents think. The structure of Lisp makes it easy to extend the language or even to implement entirely new dialects without starting from scratch. Overall, the evolution of Lisp has been guided more by institutional rivalry, one-upsmanship, and the glee born of technical cleverness that is characteristic of the “hacker culture” than by sober assessments of technical requirements. Nevertheless this process has eventually produced both an industrial- strength programming language, messy but powerful, and a technically pure dialect, small but powerful, that is suitable for use by programming-language theoreticians. We pick up where McCarthy’s paper in the first HOPL conference left off. We trace the development chronologically from the era of the PDP-6, through the heyday of Interlisp and MacLisp, past the ascension and decline of special purpose Lisp machines, to the present era of standardization activities. We then examine the technical evolution of a few representative language features, including both some notable successes and some notable failures, that illuminate design issues that distinguish Lisp from other programming languages. We also discuss the use of Lisp as a laboratory for designing other programming languages. We conclude with some reflections on the forces that have driven the evolution of Lisp.
    [Show full text]
  • Why Rapid Prototyping? the Use of Rapid Prototyping Enables Early Review and Earlier Discovery of Problems
    Accelerating Hindsight Lisp as a Vehicle for Rapid Prototyping From time to time, I meet people who really like Lisp but who ,~,~,,~-'~r~7 e" find themselves at a loss for words when trying to articulate to -'~,, others the various reasons why. For example, many people agree that good support for rapid prototyping is a key strength of Lisp. But what is rapid prototyping and how exactly is it that Lisp supports it better than other languages? In this article, I will survey the various reasons that I think Lisp--particularly Common Lisp--is good for rapid prototyping. I hope to show that there is a sound reason for the warm feeling many show toward Lisp, even when the words of explanation don't flow readily off the tongue. I also hope this is information you can use to strengthen the case for new or continued use of Lisp at your workplace. Although the focus in this paper is Common Lisp, many of the issues raised are general to the entire Lisp family of languages. Why Rapid Prototyping? The use of rapid prototyping enables early review and earlier discovery of problems. The sooner you get feedback, the more time you have to fix things and the higher the quality of the final product. Hindsight is 20-20 "As soon as I finished the project, I knew what I shouldhave done instead." This familiar refrain is the genesis of the desire to build prototypes. If there's one thing that's certain, it's that hindsight is always better than foresight.
    [Show full text]
  • Knee-Jerk Anti-Loopism and Other E-Mail Phenomena: Oral, Written, and Electronic Patterns in Computer-Mediated Communication
    Knee-jerk Anti-LOOPism and other E-mail Phenomena: Oral, Written, and Electronic Patterns in Computer-Mediated Communication by JoAnne Yates Wanda J. Orlikowski WP #3578-93 June 1993 Knee-jerk Anti-LOOPism and other E-mail Phenomena: Oral, Written, and Electronic Patterns in Computer-Mediated Communication JoAnne Yates Sloan School of Management Massachusetts Institute of Technology 50 Memorial Drive (E52-545) Cambridge, MA 02139 (617) 253-7157 [email protected] Wanda J. Orlikowski Sloan School of Management Massachusetts Institute of Technology 50 Memorial Drive (E53-329) Cambridge, MA 02139 (617) 253-0443 [email protected] June 1993 To be presented at the 53rd Annual Meeting of the Academy of Management, Atlanta, GA: August 1993. ACKNOWLEDGMENTS The authors would like to thank Miriam Oh for her dedicated research assistance, and Craig Murphy for his generous advice. Thanks are also due to the Common LISP members who participated in our study, to Jim Hollan who helped us locate the Common LISP archive, and to Kent Pitman who provided helpful comments on an earlier version of this paper. The research support of the Center for Coordination Science at the Massachusetts Institute of Technology is gratefully acknowledged. Both authors contributed equally to this paper. III Knee-jerk Anti-LOOPism and other E-mail Phenomena: Oral, Written, and Electronic Patterns in Computer-Mediated Communication Abstract This paper reports on an empirical investigation into the on-going electronic interaction of a natural distributed group. Prior organizational research into use of electronic media has focused primarily on usage patterns and only occasionally on a few linguistic features, while linguistics researchers have looked more closely at certain technical aspects of language use in electronic communication.
    [Show full text]
  • Tutorial on Good Lisp Programming Style
    Lisp Users and Vendors Conference August Tutorial on Go o d Lisp Programming Style Peter Norvig Sun Microsystems Labs Inc Kent Pitman Harlequin Inc c Portions copyright Peter Norvig c Portions copyright Kent M Pitman All Rights Reserved Outline What is Go o d Style Tips on BuiltIn Functionality Tips on NearStandard Tools Kinds of Abstraction Programming in the Large Miscellaneous What is Go o d Style Good Lisp Programming Style Elegance is not optional Richard A OKeefe Good style in any language leads to programs that are Understandable Reusable Extensible Ecient Easy to developdebug It also helps correctness robustness compatibility Our maxims of go o d style are Be explicit Be sp ecic Be concise Be consistent Be helpful anticipate the readers needs Be conventional dont b e obscure Build abstractions at a usable level Allow to ols to interact referential transparency Good style is the underware that supp ortsaprogram Where do es go o d style come from What To Believe Dont b elieve everything we tell you Just most Worry less ab out what to b elieve and more ab out why Know where your Style Rules come from Religion Go o d vs Evil This way is b etter Philosophy This is consistent with other things Robustness Liability Safety Ethics Ill put in redundant checks to avoid something horrible Legality Our lawyers say do it this way Personality Opinion I like it this way Compatibility Another to ol exp ects this way Portability Other compilers prefer this way Co op eration Convention It has to be done some
    [Show full text]
  • Abcl-1.5.0-Rc-0.Pdf
    Armed Bear Common Lisp User Manual Mark Evenson Erik H¨ulsmann Rudolf Schlatte Alessio Stalla Ville Voutilainen Version 1.5.0-rc-0 June 2017 2 Contents 0.0.1 Preface to the Sixth Edition...........................4 0.0.2 Preface to the Fifth Edition...........................4 0.0.3 Preface to the Fourth Edition..........................4 0.0.4 Preface to the Third Edition..........................4 0.0.5 Preface to the Second Edition..........................5 1 Introduction 7 1.1 Conformance.......................................7 1.1.1 ANSI Common Lisp...............................7 1.1.2 Contemporary Common Lisp..........................8 1.2 License...........................................8 1.3 Contributors.......................................8 2 Running ABCL9 2.1 Options..........................................9 2.2 Initialization....................................... 10 3 Interaction with the Hosting JVM 11 3.1 Lisp to Java........................................ 11 3.1.1 Low-level Java API................................ 11 3.2 Java to Lisp........................................ 13 3.2.1 Calling Lisp from Java.............................. 13 3.3 Java Scripting API (JSR-223).............................. 15 3.3.1 Conversions.................................... 16 3.3.2 Implemented JSR-223 interfaces........................ 16 3.3.3 Start-up and configuration file......................... 16 3.3.4 Evaluation.................................... 17 3.3.5 Compilation.................................... 17 3.3.6 Invocation of
    [Show full text]
  • Graduate Catalog Lindenwood University•Saint Charles, Missouri Established 1827 Graduate Academic Programs
    2010/2011 Graduate Catalog Lindenwood University•Saint Charles, Missouri Established 1827 Graduate Academic Programs Listed By Program Graduate Degrees Listed By Degree Semester Schedule American Studies — American Studies, M.A. Master of Arts in American Studies Business — Accounting, M.B.A., M.S. Master of Arts in Arts Management (Art, Theatre) Business — Entrepreneurial Studies, M.B.A. Master of Arts in Education Business — Finance, M.B.A., M.S. Master of Arts in Education with Character Education Emphasis Business — Human Resource Management, M.B.A., M.S. Master of Arts in Education with Business — International Business, M.B.A., M.S. Educational Technology Emphasis Business — Management, M.B.A. Master of Arts in Education with Interpretation Emphasis Business — Marketing, M.B.A., M.S. Master of Arts in Education with Library Media Certification Business — Management Information Systems, M.B.A., M.S. Master of Arts in School Administration Business — Sport Management, M.A. Master of Arts in Studio Art Communications — Communications, M.A. Master of Arts in Teaching Education — Counseling, M..A. Master of Arts in Theatre Education — Education, M.A. Master of Fine Arts in Studio Art Education — Education with Character Educ. Emphasis, M.A. Master of Arts in Communication Education—Education with Educational Technology Master of Fine Arts in Theatre Emphasis, M.A. Master of Arts in Counseling Education — Education with Interpretation Emphasis, M.A. Master of Science in Human Performance Education — Education with Library Media Cert., M.A. School Psychological Examiner Certification Education —School Administration, M.A. Ed.S. in Instructional Leadership Education — School Administration, Ed.S, Ed.S.
    [Show full text]
  • The Evolution of Lisp
    1 The Evolution of Lisp Guy L. Steele Jr. Richard P. Gabriel Thinking Machines Corporation Lucid, Inc. 245 First Street 707 Laurel Street Cambridge, Massachusetts 02142 Menlo Park, California 94025 Phone: (617) 234-2860 Phone: (415) 329-8400 FAX: (617) 243-4444 FAX: (415) 329-8480 E-mail: [email protected] E-mail: [email protected] Abstract Lisp is the world’s greatest programming language—or so its proponents think. The structure of Lisp makes it easy to extend the language or even to implement entirely new dialects without starting from scratch. Overall, the evolution of Lisp has been guided more by institutional rivalry, one-upsmanship, and the glee born of technical cleverness that is characteristic of the “hacker culture” than by sober assessments of technical requirements. Nevertheless this process has eventually produced both an industrial- strength programming language, messy but powerful, and a technically pure dialect, small but powerful, that is suitable for use by programming-language theoreticians. We pick up where McCarthy’s paper in the first HOPL conference left off. We trace the development chronologically from the era of the PDP-6, through the heyday of Interlisp and MacLisp, past the ascension and decline of special purpose Lisp machines, to the present era of standardization activities. We then examine the technical evolution of a few representative language features, including both some notable successes and some notable failures, that illuminate design issues that distinguish Lisp from other programming languages. We also discuss the use of Lisp as a laboratory for designing other programming languages. We conclude with some reflections on the forces that have driven the evolution of Lisp.
    [Show full text]
  • A Pattern of Language Evolution
    A Pattern of Language Evolution Richard P. Gabriel IBM Research Guy L. Steele Jr. Sun Laboratories Preface ization, either formal or informal. Consolidation, when most successful, results in a stable development platform. In 1992 when we completed our first draft of the History The cycle is not inexorable: the process can break down, of Programming Languages II paper, The Evolution of Lisp stop and start, and cycles can be skipped. But it is possible [1], it included sections on a theory or model of how com- to view the process of evolution at any point as being within plex language families like Lisp grew and evolved, and in one of these stages of the cycle, with the goal of moving to particular, how and when diversity would bloom and con- the next stage. solidation would prune. The historian who worked with all Each stage can be characterized by the conditions that the HOPL II authors, Michael S. Mahoney, did not believe allow it to be entered. our theory was substantiated properly, so he recommend- ed removing the material and sticking with the narrative Conditions for Acceptance of Lisp’s evolution. We stopped working on those sections, but they remained in the original text sources but removed The most critical stage is acceptance. This stage determines with conditionals. which language features and paradigms will be part of the Although the uncut version of the paper is published on- next stage of stable development. The conditions for ac- line [2], the theory was never officially published. This short ceptance are being on the right machines, fitting into local paper is the publication of that material.
    [Show full text]
  • Hygiene for the Unhygienic Hygiene-Compatible Macros in an Unhygienic Macro System
    Hygiene for the Unhygienic Hygiene-Compatible Macros in an Unhygienic Macro System Pascal Costanza and Theo D'Hondt (Vrije Universiteit Brussel [email protected] and Theo.D'[email protected]) Abstract: It is known that the essential ingredients of a Lisp-style unhygienic macro system can be expressed in terms of advanced hygienic macro systems. We show that the reverse is also true: We present a model of a core unhygienic macro system, on top of which a hygiene-compatible macro system can be built, without changing the internals of the core macro system and without using a code walker. To achieve this, the internal representation of source code as Lisp s-expressions does not need to be changed. The major discovery is the fact that symbol macros can be used in conjunction with local macro environments to bootstrap a hygiene-compatible macro system. We also discuss a proof-of-concept implementation in Common Lisp and give some historical notes. 1 Introduction Macros are local program transformations triggered explicitly in the source code of a program. Since their introduction into Lisp in 1963 [Hart 63], they have found their way into many Lisp dialects, since Lisp is especially attractive for macros due to its homoiconic nature: The source code of Lisp programs is con- structed from s-expressions, that is lists, symbols and (literal) values, which are all core data types of Lisp itself [Kay 69, McIlroy 60]. Lisp macros can therefore simply be expressed as functions that map s-expressions to s-expressions. Since the initial macro systems for Lisp have operated on \raw" s-expressions, variable names that are introduced and/or referenced in the result of a macroex- pansion are susceptible to inadvertent capture by introductions and/or references in the surrounding code of the macro invocation.
    [Show full text]
  • Revised6report on the Algorithmic Language Scheme
    Revised6 Report on the Algorithmic Language Scheme MICHAEL SPERBER R. KENT DYBVIG,MATTHEW FLATT,ANTON VAN STRAATEN (Editors) RICHARD KELSEY,WILLIAM CLINGER,JONATHAN REES (Editors, Revised 5 Report on the Algorithmic Language Scheme) ROBERT BRUCE FINDLER,JACOB MATTHEWS (Authors, formal semantics) 26 September 2007 SUMMARY The report gives a defining description of the programming language Scheme. Scheme is a statically scoped and properly tail-recursive dialect of the Lisp programming language invented by Guy Lewis Steele Jr. and Gerald Jay Sussman. It was designed to have an exceptionally clear and simple semantics and few different ways to form expressions. A wide variety of programming paradigms, including functional, imperative, and message passing styles, find convenient expression in Scheme. This report is accompanied by a report describing standard libraries [24]; references to this document are identified by designations such as “library section” or “library chapter”. It is also accompanied by a report containing non-normative appendices [22]. A fourth report gives some historical background and rationales for many aspects of the language and its libraries [23]. The individuals listed above are not the sole authors of the text of the report. Over the years, the following individuals were involved in discussions contributing to the design of the Scheme language, and were listed as authors of prior reports: Hal Abelson, Norman Adams, David Bartley, Gary Brooks, William Clinger, R. Kent Dybvig, Daniel Friedman, Robert Halstead, Chris Hanson, Christopher Haynes, Eugene Kohlbecker, Don Oxley, Kent Pitman, Jonathan Rees, Guillermo Rozas, Guy L. Steele Jr., Gerald Jay Sussman, and Mitchell Wand. In order to highlight recent contributions, they are not listed as authors of this version of the report.
    [Show full text]
  • Symbols As Namespaces in Common Lisp
    Symbols as Namespaces in Common Lisp Alessio Stalla [email protected] ABSTRACT and is itself built upon it – it is, in its core, a system for the ma- In this paper, we propose to extend Common Lisp’s fundamental nipulation of lists of symbols. This makes programming in Lisp symbol data type to act as a namespace for other symbols, thus qualitatively different from other programming languages [3], be forming a hierarchy of symbols containing symbols and so on recur- they object-oriented, functional, imperative, and so on. Usually we sively. We show how it is possible to retrofit the existing Common tend to concentrate on lists (or, better, on conses) and to forget Lisp package system on top of this new capability of symbols in about the importance of symbols. order to maintain compatibility to the Common Lisp standard. We present the rationale and the major design choices behind this effort 1.2 Packages along with some possible use cases and we describe an implemen- Early Lisps had a single namespace for symbols [6]. That is, a single tation of the feature on a modified version of Armed Bear Common global hash table that the Lisp reader consults when it encounters Lisp (ABCL). a symbol name: if it’s already present in the table, the associated symbol is used, otherwise a fresh symbol is created and stored in CCS CONCEPTS the table. This operation is called INTERN. The table itself is called • Software and its engineering → Modules / packages; Data an obarray in Maclisp [8], Emacs Lisp [2], and perhaps other Lisps.
    [Show full text]