Like Go/Rust, why not to have "func" keyword before function declaration

Danni Coy via Digitalmars-d digitalmars-d at puremagic.com
Tue Jan 20 11:24:46 PST 2015


> So... how do you search for a function definition in D without an IDE?

Regular Expression Search for

FunctionName.*\n\s*\{

or

FunctionName.*\{

depending on brace style being used.


More information about the Digitalmars-d mailing list