Skip to content

Errata to the first printing by MIT Press  #733

Open
@martin-henz

Description

@martin-henz

This issue collects the errata of the print edition of SICP JS (print 2022):

  • 4.1.5, page 351 (top): Extra semicolon in function strange:
function strange(f) {
    return halts(f, f)
           ? run_forever();
           : "halted";
}

should be

function strange(f) {
    return halts(f, f)
           ? run_forever()
           : "halted";
}

fixed in online edition; fix is PR #747.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions