2.6 Summary

In this chapter, we covered the following:

Table 2.1 Dylan naming conventions shown in this chapter.

Dylan element

Example of name

module variable

*my-number*

constant

$pi

class

<integer>

predicate

positive?

Table 2.2 Syntax of Dylan elements.

Dylan element

Syntax example

string

"Runway"

true

any value that is not #f

canonical true value

#t

false

#f

infix syntax function call

2 + 3;

function call

max(2, 3);

Here, we summarize the most basic information about libraries and modules: