Difference between revisions of "Cookbook"

From D Wiki
Jump to: navigation, search
(Meta Programming: Add dispatch snippet)
(One-line Code Recipes)
 
(14 intermediate revisions by 7 users not shown)
Line 36: Line 36:
  
 
=== Building ===
 
=== Building ===
 +
* [[Using C libraries for a D program]]
 
* [[Minimalistic cross-platform Makefile]]
 
* [[Minimalistic cross-platform Makefile]]
 
* [[Minimalistic cross-platform Rakefile]]
 
* [[Minimalistic cross-platform Rakefile]]
Line 49: Line 50:
 
| sep=;
 
| sep=;
 
}}
 
}}
* [[Dispatching an object based on its dynamic type]]
 
  
 
<!--------></td><td style="vertical-align: top; width: 50%;">
 
<!--------></td><td style="vertical-align: top; width: 50%;">
Line 63: Line 63:
 
| sep=,
 
| sep=,
 
}}
 
}}
 +
==== ARM Cortex-M Programming ====
 +
* [[Minimal semihosted ARM Cortex-M %22Hello_World%22]]
 +
* [[Microcontroller_startup_files]]
 +
<!--------></td>
  
 +
==== One-line Code Recipes ====
 +
* [[Reading and writing to files]]
 
<!--------></td></tr></table>
 
<!--------></td></tr></table>
 +
 +
[[Category:Cookbook]]

Latest revision as of 22:55, 17 July 2020

The Cookbook is a community-created collection of practical examples, guides and advice for accomplishing common tasks in D.

Can't find the guide or recipe you're looking for?
Add a Cookbook Request »


Guides

Compiler

Data Handling


Recipes

One-line Code Recipes

Building

Math

Meta Programming


Parsing

Strings and Text

ARM Cortex-M Programming