Skip to content

in index.markdown, need chg bitwise C ops & and | to && and || #8

Description

@dashyr

The first line is the equivalent of 3 < 4 & 20 < 30 in a C-based language. The second line is the equivalent of 3 < 4 | 20 > 30.

I believe that the bitwise operators above (& , |) should be changed to the logical operators (&& , ||) as below.

The first line is the equivalent of 3 < 4 && 20 < 30 in a C-based language. The second line is the equivalent of 3 < 4 || 20 > 30.

Thank you for making EasyForth.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions