|
|
|
|
|
by thepumpkin1979
3884 days ago
|
|
Not sure what I do wrong every time I try D again, I wanted to see the new backtraces worked but I still get: /bin/bash: line 1: 82501 Segmentation fault: 11 ./main
while I try to call a method on a null variable, which is not that friendly to newcomers.Sample code: import std.stdio;
void main()
{
Greetings g = null;
g.hola();
}
|
|