Discover millions of ebooks, audiobooks, and so much more with a free trial

Only $11.99/month after trial. Cancel anytime.

Lisp Programming Language
Lisp Programming Language
Lisp Programming Language
Ebook25 pages10 minutes

Lisp Programming Language

Rating: 0 out of 5 stars

()

Read preview

About this ebook

Introduction of lisp programming language for the beginners to grasp the basics of lisp. The tutorial uses Allegro Franz lisp environment to teach lisp programming language. It teaches from car , cdr, cons to some what advanced proramming language features.

LanguageEnglish
Release dateMar 18, 2012
ISBN9781476193649
Lisp Programming Language
Author

Faiz ul haque Zeya

Faiz ul haque Zeya(1975-) did his MS from University of Tulsa, OK USA in Computer science AI.Started working on AI in BE and then took courses in AI in MS.He teaches AI for 7 years in different universities in Pakistan.His citation which is the work of BE project in book "Agents and computational autonomy" is present in around 400 libraries worldwide. He is CEO of Transys which develops software agents.

Related to Lisp Programming Language

Related ebooks

Science & Mathematics For You

View More

Related articles

Reviews for Lisp Programming Language

Rating: 0 out of 5 stars
0 ratings

0 ratings0 reviews

What did you think?

Tap to rate

Review must be at least 10 words

    Book preview

    Lisp Programming Language - Faiz ul haque Zeya

    Lisp programming language

    Faiz ul haque Zeya

    Copy Right Faiz ul haque Zeya 2012

    Published at Smashwords

    `

    Table of contents

    1.    Introduction  of  LISP

    2.    Lisp environments

    3.    Data types

    4.    Conditionals and Iteration, control structures

    5.    I/O, Files and other

    6.    Answers

    Chapter 1 Introduction of LISP

    This book introduces lisp languages. Lisp was invented by John McCarthy. Lisp stands for List Processor. It is an interpretive language. Statements written at the prompts are executed by the interpreter. Let us write two simple Lisp functions.

    (defun square (num) (* num num))

    This function computes the square of a number. ‘defun’ is used to define a function. The syntax of defun is .

    (defun function-name (parameters ) function-body)

    ‘square’ is the name of the

    Enjoying the preview?
    Page 1 of 1