From 74c9d5c15538622327bd0ac14c3b88aeca209616 Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Tue, 6 Feb 2024 16:44:20 +1300 Subject: [PATCH] add second compilation example to readme --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ab023bb..624b9d3 100644 --- a/README.md +++ b/README.md @@ -48,5 +48,6 @@ Download initial.d and put it somewhere in your import path, then compile it alo your program and link it in. Or you can do it all at once by using -i. ``` -dmd -i -of=program program.d +dmd program.d initial.d +dmd -i program.d ```