Search

November 20, 2021
General »
...mixin("(*t) "~op~"= r;");
            return *t;
        }
    }

    class Square
    {
        private double width = 42;
        public auto area...
November 19, 2021
General »
...Square
{
    private double width;
    public double area
    {
        get => width * width;
        set => width = Sqrt(value);
    }
    Square...
November 08, 2021
General »
...it with a question mark in a square or something).

I think this is an...
October 18, 2021
General »
put the square function in another compilation unit (i.e. its source is not available...
October 17, 2021
General »
...test.c
int square(int x) { return x * x; }

const int c = square(2);

mercury...
October 17, 2021
General »
...could compile:

  int square(int x) { return x * x; }

  const int s = square(2);

Being...
October 01, 2021
Learn »
...org/LDC-specific_language_changes

```d
// provide square root intrinsics
pragma(LDC_intrinsic, "llvm.sqrt...
September 02, 2021
General »
...T

-- 
Why did the mathematician reinvent the square wheel?  Because he wanted to drive smoothly...
September 02, 2021
Learn »
I meant the square of the size of the respective directory. (bytes / LOC / SLOC...)

If...
September 02, 2021
Learn »
...the square of the current reduction (.reduced directory), and divide it by the square of...
1 2 3 4 5 6 7 8
Next ›   Last »