Add d_string example.

This commit is contained in:
Jesse Brault 2025-09-18 17:00:20 -05:00
parent 522869371e
commit 5ff14f9dea

4
examples/d_string.dm Normal file
View File

@ -0,0 +1,4 @@
fn main()
let world = 'Earth'
println "Hello, ${world}!"
end