From ef3a79ea2adea74f8c04e30db220940f80f365a7 Mon Sep 17 00:00:00 2001 From: Dawn Rose <63545980+tastethedream@users.noreply.github.com> Date: Mon, 5 Dec 2022 15:22:51 +0000 Subject: [PATCH] Update ex2-4.md Code update to reflect QC2 section 1.5 --- ch02/ex2-4.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/ch02/ex2-4.md b/ch02/ex2-4.md index e0c21ad..5a65593 100644 --- a/ch02/ex2-4.md +++ b/ch02/ex2-4.md @@ -3,7 +3,14 @@ ## Example ```dart -String demoStringValue = 'I am a string'; +void main() +String myVariable = "I am a string"; + +String myVariable2 = """ + I am a multiline + string + """; + } ```