On this page:
11.1 General
11.1.1 Indentation
11.1.2 Line Length
11.1.3 Variable Naming
11.1.3.1 Naming Constants
11.1.3.2 Reusing Variable Names
11.1.4 File Naming
11.1.5 Example and Tests
11.2 Functions
11.2.1 Naming
11.2.2 Documentation Strings
11.2.3 Annotations
11.2.4 Testing
11.3 Data
11.3.1 Definitions
11.3.2 Cases
11.4 Naming Intermediate Expressions
11.4.1 Local Variables
11.4.2 Beware of var!

11 Pyret Style Guide

Frank Goodman and Shriram Krishnamurthi

Ahoy matey! Here be the style guide for Pyret. Follow me rules to find the hidden treasure, or walk the plank!

    11.1 General

      11.1.1 Indentation

      11.1.2 Line Length

      11.1.3 Variable Naming

        11.1.3.1 Naming Constants

        11.1.3.2 Reusing Variable Names

      11.1.4 File Naming

      11.1.5 Example and Tests

    11.2 Functions

      11.2.1 Naming

      11.2.2 Documentation Strings

      11.2.3 Annotations

      11.2.4 Testing

    11.3 Data

      11.3.1 Definitions

      11.3.2 Cases

    11.4 Naming Intermediate Expressions

      11.4.1 Local Variables

      11.4.2 Beware of var!

11.1 General

11.1.1 Indentation

You should indent your code blocks using two spaces (not tabs).

11.1.2 Line Length

Try to keep the total length of your lines under 80 characters.

For overly long lines, it’s actually really hard to figure out where to put in good line breaks. This is in every language. Look for something that tries to match the logical structure of your program.

However, there’s usually a better way to solve this problem: create extra variables to name the intermediate pieces, and use those names. E.g.: instead of worrying where to put in line breaks in

fun f(x, y, z):

  g(some-very-long-thing(x * x, y + y), other-very-long-thing((x + y + z) / (2 * 3 * 4)))

end

it might be better to write it as

fun f(x, y, z):

  sensible-name-1 = some-very-long-thing(x * x, y + y)

  sensible-name-2 = other-very-long-thing((x + y + z) / (2 * 3 * 4))

  g(sensible-name-1, sensible-name-2)

end

(and think about indenting/shortening those two new lines).

Not only does this shorten lines, it makes it clearer what all these pieces are doing, helping a later reader (who may be yourself!).

11.1.3 Variable Naming

The programming language world rages about the use of camelCase versus under_scores in variable names. Pyret’s syntax supports both, but we can do better.

In Pyret, you can use dashes (-) inside variable names.This is sometimes called “kebab case”, but it would be more accurate to call it “shish case”. Thus, you would write camel-case and under-scores. Unlike underscores, dashes don’t need a shift key (or disappear when text is underlined by an environment). Unlike camelcase, dashes don’t create ambiguities (what if one of the words is in all-caps?). Dashes are also humanizing: they make your program look that little bit more like human prose.

Most languages can’t support dashes because the dash also stands for infix subtraction. In Pyret, subtraction must be surrounded by space. Therefore, camel-case is a name whereas camel - case is subtraction.

11.1.3.1 Naming Constants

You should name constants in all-capital letters unless an external convention would dictate using some other capitalization for that particular name. For example,

MY-COUNT = 100

e = 2.7182

11.1.3.2 Reusing Variable Names

Pyret is picky about letting you reuse variable names. This is to help you avoid confusing two different variables that have the same name and accidentally using the wrong one. Specifically, an inner scope can’t use a name that is already bound in an outer scope; but two different inner scopes can each use the same name. For instance,

fun f(x): x + 1 end

fun g(x): x + 2 end

is legal, but

fun h(x):

  x = 4

  x + 1

end

is not.

11.1.4 File Naming

Use .arr as the extension for Pyret files.

11.1.5 Example and Tests

We use the syntax of testing to represent two different tasks: examples, which help us explore a problem and take steps towards deriving a solution, and tests, which are designed to find errors. These are subtly different.

We write (most) examples before writing the corresponding code. Therefore, it makes sense to put these examples in an examples block:

examples:

  f(10) is 25

  f(20) is-not 2000

end

The keyword examples is synonymous with check, so we could as well have written check instead. However, by convention we use check for tests rather than examples.

11.2 Functions

11.2.1 Naming

Give functions descriptive names. Do the same for arguments. That way, a quick scan of a function’s header will tell you what it does and what the arguments are supposed to do.

11.2.2 Documentation Strings

Unless the name is self-evident, write a brief documentation string for your function. For instance:

fun insert(x, l):

  doc: "consumes sorted list l; returns it with x in the right place"

  ...

end

Try to write your documentation in functional form, i.e., describing what the function consumes and what it returns after computation.

If your comment needs to span multiple lines, use three back-ticks—

```

to begin and end the string. For instance:

fun f(x):

  doc: ```This is a

       multi-line

       comment here.```

  x + x

end

This is also how you write a multi-line string in Pyret.

11.2.3 Annotations

Wherever possible, annotate both argument and return values. For instance,

fun str-len(str :: String) -> Number:

  # ...

end

Even though Pyret does not currently check parametric annotations, you should still write them for their value as user documentation. Thus:

fun length(lst :: List<Any>) -> Number:

  # ...

end

You can even write an arbitrary predicate when a built-in annotation isn’t expressive enough. For instance, suppose we want to write a function that consumes only non-negative numbers. We can define the predicate—

fun non-negative(n :: Number) -> Boolean:

  n >= 0

end

and then use it as follows:

fun sqrt(n :: Number%(non-negative)) -> Number:

  # ...

end

11.2.4 Testing

You should test every function you write for both general cases and edge cases.

As we have discussed earlier [Example and Tests], you can write these using examples and check. In addition, you can also write examples and tests of functions as part of the function declaration, using where:

fun double(n :: Number) -> Number:

  n * 2

where:

  double(0) is 0

  double(5) is 10

  double(-5) is -10

  double(100) is 200

  double(-100) is -200

end

Usually, the examples you create to help you think through the problem would go in an examples block, and a large suite of tests would end up in a separate check block. In a where block, we should have a small number of illustrative examples that help a reader to quickly grasp the essence of the function’s behavior. Try to keep the size of the where block small and manageable. In particular, a large test suite—meant to cover lots of behaviors, including potentially redundant ones, and to find bugs—should go in a separate check block rather than cluttering up the function definition’s where region.

11.3 Data

11.3.1 Definitions

Wherever possible, provide annotations in Data definitions:

data Animal:

  | snake(name :: String)

  | dillo(weight :: Number, living :: Boolean)

end

11.3.2 Cases

To branch on the variants of a datum, use cases:

cases (Animal) a:

  | snake(s) => s == "Dewey"

  | dillo(w, l) => (w < 10) and l

end

Sometimes, you won’t use all the parts of a datum. You can still name an unused part, but it is suggestive to use _ instead; this indicates to the reader that that field won’t be used in this computation, so they can ignore it:

cases (Animal) a:

  | snake(s) => ...

  | dillo(w, _) => ...

end

Note that _ is different from identifier names like dummy because you can’t write

cases (Animal) a:

  | snake(s) => ...

  | dillo(dummy, dummy) => ...

end

(you’ll get an error because you’re trying to bind dummy twice), but you can write

cases (Animal) a:

  | snake(s) => ...

  | dillo(_, _) => ...

end

and thus ignore multiple fields.

Finally, if your conditional is not designed to handle a particular kind of datum, signal an error:

cases (Animal) a:

  | snake(s) => ...

  | dillo(_, _) => raise("Serpents only, please!")

end

11.4 Naming Intermediate Expressions

11.4.1 Local Variables

You are welcome to create local names for expressions. For instance, instead of writing

fun hypo-len(a, b):

  num-sqrt((a * a) + (b * b))

end

you are welcome to write

fun hypo-len(a, b):

  a2 = a * a

  b2 = b * b

  sum-of-other-two-sides = a2 + b2

  num-sqrt(sum-of-other-two-sides)

end

Even though you shouldn’t have multiple expressions as a function body, these local definitions are not expressions in their own right, so this is perfectly legal code; the value of calling the function is that produced by its expression (which, here, is num-sqrt(sum-of-other-two-sides)).

11.4.2 Beware of var!

You might have noticed that Pyret lets you write var before local names: for instance, you can write the previous example as

fun hypo-len(a, b):

  var a2 = a * a

  var b2 = b * b

  var sum-of-other-two-sides = a2 + b2

  num-sqrt(sum-of-other-two-sides)

end

instead. In particular, if you have prior experience in a language like JavaScript, you might think this is good practice. It’s not: don’t do this! In Pyret, adding var turns each name into a mutable variable, i.e., one that you can modify using an assignment statement. This is virtually never intended in our courses, and is usually a bad programming practice. Therefore, do not use var unless you absolutely meant to create a mutable variable and have been told to do so.