Scheme is a dialect of Lisp language. It is useful in artificial intelligence research. Here we give some introductory information.
Scheme uses prefix notation. For example; 3 + 4 is written as (+ 3 4)
There are many built-in definitions in Scheme +,-,*,/ are some of these. However, you can also define your own procedures and variables. [...]
