Search:

Type: Posts; User: GReaper

Search: Search took 0.05 seconds.

  1. Replies
    8
    Views
    2,779

    Oh, that's pretty straightforward. All you need...

    Oh, that's pretty straightforward. All you need to do is "convert":

    conditions ? expression1 : expression2;
    to


    if (conditions)
    expression1;
    else
    expression2;
  2. Replies
    8
    Views
    2,779

    Having read this page...

    Having read this page that refers to the language's syntax, I noticed that:
    (*) You introduce the unnecessary boolean XOR as "^^", while ignoring the fundamental boolean NOT "!"
    (*) You...
Results 1 to 2 of 2