Home > Computing and Information Technology > Computer programming / software engineering > Functional programming > Land of Lisp: Learn to Program in Lisp, One Game at a Time!(English)
40%
Land of Lisp: Learn to Program in Lisp, One Game at a Time!(English)

Land of Lisp: Learn to Program in Lisp, One Game at a Time!(English)

          
5
4
3
2
1

Out of Stock


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Notify me when this book is in stock
Add to Wishlist
X

About the Book

Lisp has been hailed as the world s most powerful programming language, but its cryptic syntax and academic reputation can be enough to scare off even experienced programmers. Those dark days are finally over Land of Lisp brings the power of functional programming to the people! With his brilliantly quirky comics and out-of-this-world games, longtime Lisper Conrad Barski teaches you the mysteries of Common Lisp. You ll start with the basics, like list manipulation, I/O, and recursion, then move on to more complex topics like macros, higher order programming, and domain-specific languages. Then, when your brain overheats, you can kick back with an action-packed comic book interlude! Along the way you ll create (and play) games like Wizard Adventure, a text adventure with a whiskey-soaked twist, and Grand Theft Wumpus, the most violent version of Hunt the Wumpus the world has ever seen. You'll learn to: Master the quirks of Lisp s syntax and semantics Write concise and elegant functional programs Use macros, create domain-specific languages, and learn other advanced Lisp techniques Create your own web server, and use it to play browser-based games Put your Lisp skills to the test by writing brain-melting games like Dice of Doom and Orc Battle With Land of Lisp, the power of functional programming is yours to wield.

Table of Contents:
Dedication; Acknowledgments; Introduction; What Makes Lisp So Cool and Unusual?; If Lisp Is So Great, Why Don't More People Use It?; Where Did Lisp Come From?; Where Does Lisp Get Its Power?; Lisp is Power; Chapter 1: Getting Started with Lisp; 1.1 Lisp Dialects; 1.2 Getting Started with CLISP; 1.3 What You've Learned; Chapter 2: Creating Your First Lisp Program; 2.1 The Guess-My-Number Game; 2.2 Defining Global Variables in Lisp; 2.3 Basic Lisp Etiquette; 2.4 Defining Global Functions in Lisp; 2.5 Defining Local Variables in Lisp; 2.6 Defining Local Functions in Lisp; 2.7 What You've Learned; Chapter 3: Exploring the Syntax of Lisp Code; 3.1 Syntax and Semantics; 3.2 The Building Blocks of Lisp Syntax; 3.3 How Lisp Distinguishes Between Code and Data; 3.4 Lists in Lisp; 3.5 What You've Learned; Lisp is Symmetry; Chapter 4: Making Decisions with Conditions; 4.1 The Symmetry of nil and (); 4.2 The Conditionals: if and Beyond; 4.3 Cool Tricks with Conditions; 4.4 Comparing Stuff: eq, equal, and More; 4.5 What You've Learned; Chapter 5: Building a Text Game Engine; 5.1 The Wizard's Adventure Game; 5.2 Describing the Scenery with an Association List; 5.3 Describing the Location; 5.4 Describing the Paths; 5.5 Describing Objects at a Specific Location; 5.6 Describing It All; 5.7 Walking Around in Our World; 5.8 Picking Up Objects; 5.9 Checking Our Inventory; 5.10 What You've Learned; Chapter 6: Interacting with the World: Reading and Printing in Lisp; 6.1 Printing and Reading Text; 6.2 The Symmetry Between Code and Data in Lisp; 6.3 Adding a Custom Interface to Our Game Engine; 6.4 Trying Out Our Fancy New Game Interface; 6.5 The Dangers of read and eval; 6.6 What You've Learned; Chapter 6.5: lambda: A Function So Important It Deserves Its Own Chapter; 7.1 What lambda Does; 7.2 Why lambda Is So Important; 7.3 What You've Learned; Chapter 7: Going Beyond Basic Lists; 8.1 Exotic Lists; 8.2 Coping with Complicated Data; 8.3 Creating a Graph; 8.4 Creating Undirected Graphs; 8.5 What You've Learned; Chapter 8: This Ain't Your Daddy's Wumpus; 9.1 The Grand Theft Wumpus Game; 9.2 Defining the Edges of Congestion City; 9.3 Building the Nodes for Congestion City; 9.4 Initializing a New Game of Grand Theft Wumpus; 9.5 Drawing a Map of Our City; 9.6 Let's Hunt Some Wumpus!; 9.7 What You've Learned; Chapter 9: Advanced Datatypes and Generic Programming; 10.1 Arrays; 10.2 Hash Tables; 10.3 Common Lisp Structures; 10.4 Handling Data in a Generic Way; 10.5 The Orc Battle Game; 10.6 What You've Learned; Lisp is Hacking; Chapter 10: Looping with the loop Command; 11.1 The loop Macro; 11.2 Using loop to Evolve!; 11.3 What You've Learned; Chapter 11: Printing Text with the format Function; 12.1 Anatomy of the format Function; 12.2 Control Sequences for Printing Lisp Values; 12.3 Control Sequences for Formatting Numbers; 12.4 Printing Multiple Lines of Output; 12.5 Justifying Output; 12.6 Iterating Through Lists Using Control Sequences; 12.7 A Crazy Formatting Trick for Creating Pretty Tables of Data; 12.8 Attack of the Robots!; 12.9 What You've Learned; Chapter 12: Working with Streams; 13.1 Types of Streams; 13.2 Working with Files; 13.3 Working with Sockets; 13.4 String Streams: The Oddball Type; 13.5 What You've Learned; Chapter 13: Let's Create a Web Server!; 14.1 Error Handling in Common Lisp; 14.2 Writing a Web Server from Scratch; 14.3 Building a Dynamic Website; 14.4 What You've Learned; Chapter 13.5: Functional Programming Is Beautiful; Lisp is Science; Chapter 14: Ramping Lisp Up a Notch with Functional Programming; 16.1 What Is Functional Programming?; 16.2 Anatomy of a Program Written in the Functional Style; 16.3 Higher-Order Programming; 16.4 Why Functional Programming Is Crazy; 16.5 Why Functional Programming Is Fantastic; 16.6 What You've Learned; Chapter 15: Dice of Doom, a Game Written in the Functional Style; 17.1 The Rules of Dice of Doom; 17.2 A Sample Game of Dice of Doom; 17.3 Implementing Dice of Doom, Version 1; 17.4 Creating an Intelligent Computer Opponent; 17.5 Making Dice of Doom Faster; 17.6 What You've Learned; Chapter 16: The Magic of Lisp Macros; 18.1 A Simple Lisp Macro; 18.2 More Complex Macros; 18.3 Macros: Dangers and Alternatives; 18.4 What You've Learned; Chapter 17: Domain-Specific Languages; 19.1 What Is a Domain?; 19.2 Writing SVG Files; 19.3 Creating Custom Game Commands for Wizard's Adventure Game; 19.4 What You've Learned; Chapter 18: Lazy Programming; 20.1 Adding Lazy Evaluation to Lisp; 20.2 Dice of Doom, Version 2; 20.3 Making Our AI Work onnnnnn Larger Game Boards; 20.4 What You've Learned; Chapter 19: Creating a Graphical, Web-Based Version of Dice of Doom; 21.1 Drawing the Game Board Using the SVG Format; 21.2 Building the Web Server Interface; 21.3 Playing Version 3 of Dice of Doom; 21.4 What You've Learned; Chapter 20: Making Dice of Doom More Fun; 22.1 Increasing the Number of Players; 22.2 Rolling the Dice; 22.3 Improving the Dice of Doom Reinforcement Rules; 22.4 Conclusion; Epilogue; Functional Guild Cruiser; Macro Guild Melee Fighters; Restart Guild Armored Fighter; Generic Setter Guild Supply Ship; DSL Guild Hot Rods; CLOS Guild Battleship; The Continuation Guild Rocket Pods; Brevity Guild Micro Fighter; Multicore Guild Formation Fighters; The Lazy Guild Frigate; Updates;


Best Sellers


Product Details
  • ISBN-13: 9781593272814
  • Publisher: No Starch Press,US
  • Publisher Imprint: No Starch Press,US
  • Depth: 32
  • Language: English
  • Returnable: Y
  • Spine Width: 31 mm
  • Weight: 986 gr
  • ISBN-10: 1593272812
  • Publisher Date: 15 Oct 2010
  • Binding: Paperback
  • Height: 234 mm
  • No of Pages: 504
  • Series Title: English
  • Sub Title: Learn to Program in Lisp, One Game at a Time!
  • Width: 178 mm


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
Land of Lisp: Learn to Program in Lisp, One Game at a Time!(English)
No Starch Press,US -
Land of Lisp: Learn to Program in Lisp, One Game at a Time!(English)
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Land of Lisp: Learn to Program in Lisp, One Game at a Time!(English)

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA