Search

July 16, 2022
Issues »
...import core.memory;
    foo();
    killstack();
    GC.collect();
}
```

Why does this happen? Because inside the GC...
June 22, 2022
General »
...string[] args)
{
    template foo() {
        void foo() {
            bar();
        }
        void...about regarding function overloading inside a function (also...
June 20, 2022
General »
...class F {
    restricted foo() { ... }
    restricted(foo) bar { ... }
}
```

I...intended to be accessible inside the module. Any...
June 14, 2022
General »
...put the class decleration inside a function and...Consider the following:
```
class Foo {
class_private int...
June 13, 2022
General »
...the module Foo resides in:

- Only public members are accessible.

Inside the module Foo resides...
June 05, 2022
Learn »
...struct Foo {
>    Foo dup() {
>      auto result = Foo(this...existing.dup();

Then 'result' inside dup() is the...
June 05, 2022
Learn »
...is inside a function, i.e. the array is on the stack:

void foo() {
  Foo...
May 31, 2022
General »
...int bar = foo + 1;
     int foo = 0;
````
That...at top level and inside structs.

Well, I...
May 31, 2022
General »
...is what `foo` means at the point in which bar is being compiled. Inside functions...
May 13, 2022
General »
...Inside foo       : ", &s.i);
}

void main() {
  foo(S!1(42));
  foo(S!1000(43));
}

foo...
1 2 3 4 5 6 7 8 9
Next ›   Last »