D Programming/Quick Reference Card
From Wikibooks, the open-content textbooks collection
Contents |
[edit] Program Structure/Functions
- void main(){}
- minimal main routine
- int main(char[][] aArgs){ return 0;}
- main routine with arguments
- /* */
- block comments
- /+ +/
- nesting block comments
- //
- line comments

