BookRags.com Literature Guides Literature
Guides
Criticism & Essays Criticism &
Essays
Questions & Answers Questions &
Answers
Lesson Plans Lesson
Plans
My Bibliography Periodic Table U.S. Presidents Shakespeare Sonnet Shake-Up
Research Anything:        
History | Encyclopedias | Films | News | Create a Bibliography | More... Login | Register | Help
Not What You Meant?  There are 82 definitions for ABC.

ABC (programming language)

Print-Friendly
About 1 pages (389 words)

Bookmark and Share Know this topic well? Help others and get FREE products!
ABC
Paradigm multi-paradigm: imperative, procedural, structured
Designed by Leo Geurts, Lambert Meertens, Steven Pemberton
Developer CWI
Typing discipline strong
Influenced Python

ABC is an imperative general-purpose programming language and programming environment developed at CWI, Netherlands by Leo Geurts, Lambert Meertens, and Steven Pemberton. It is interactive, structured, high-level, and easy to learn and use, intended to be used instead of BASIC, Pascal, or even AWK. It is not a systems-programming language but is good for teaching or prototyping. ABC has only five basic datatypes. It does not require variable declarations. It has explicit support for top-down programming. Statement nesting is indicated by indentation. It provides infinite precision arithmetic, unlimited sized lists and strings, and other features supporting orthogonality and ease of use by novices. Its designers claim that ABC programs are typically around a quarter the size of the equivalent Pascal or C programs, and more readable. ABC was originally a monolithic implementation, leading to an inability to adapt to new requirements, such as creating a Graphical User Interface. ABC could not directly access the underlying file system and operating system. ABC includes a programming environment with syntax-directed editing, suggestions, persistent variables, and multiple workspaces. ABC is available as an interpreter/compiler, currently at version 1.05.02. ABC has been ported to Unix, DOS, Atari, and Apple Macintosh. ABC also had a major influence on the design of the Python programming language; Guido van Rossum, who developed Python, previously worked for several years on the ABC system in the early 1980s [1] [2].

Contents

Example

An example function words to collect the set of all words in a document:

HOW TO RETURN words document:
PUT {} IN collection
FOR line IN document:
   FOR word IN split line:
      IF word not.in collection:
         INSERT word IN collection
RETURN collection

References

This article was originally based on material from the Free On-line Dictionary of Computing, which is licensed under the GFDL.

See also

External links

Books

View More Summaries on ABC (programming language)
 
Ask any question on ABC (programming language) and get it answered FAST!
Answer questions in BookRags Q&A and earn points toward
discounted or even FREE Study Guides and other BookRags products!
Learn more about BookRags Q&A
Copyrights
ABC (programming language) from Wíkipedia. ©2006 by Wíkipedia. Licensed under the GNU Free Documentation License. View a list of authors or edit this article.

Article Navigation
Join BookRagslearn moreJoin BookRags




About BookRags | Customer Service | Report an Error | Terms of Use | Privacy Policy