Skip to content

Extra semicolon in 4.1.5 (function strange) #748

Closed
@martin-henz

Description

@martin-henz

There is an extra semicolon in this function in section 4.1.5:

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

should be:

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions