D Paste by naryl
Description: simple.d
Hide line numbers

Create new paste
Post a reply
View replies

Paste:
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
int func() {
    return 42;
}

int func(int i) {
    return i;
}

void main() {
    auto a = func();
}

Replies:

    (some replies deleted)