File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
exercises/01.expressions-and-output/01.problem.hello-world Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -37,9 +37,4 @@ for (const testFile of testFiles) {
3737 const dest = path . join ( destDir , testFile )
3838
3939 fs . copyFileSync ( src , dest )
40- console . log ( `✅ Copied ${ testFile } from solution to playground` )
41- }
42-
43- if ( testFiles . length > 0 ) {
44- console . log ( `\n📋 Copied ${ testFiles . length } test file(s) to playground` )
4540}
Original file line number Diff line number Diff line change @@ -12,10 +12,13 @@ is how you see the results of your code.
1212
1313💰 Strings are text values wrapped in quotes:
1414
15+ { /* prettier-ignore */ }
1516``` ts
1617console .log (' This is a string' )
17- console .log (' Double quotes work too' )
18+ console .log (" Double quotes work too" )
1819```
1920
21+ <callout-info >Which quotes you use is a matter of preference.</callout-info >
22+
2023🐨 Once you've completed the exercise, run ` node index.ts ` in the playground to
2124see your output!
You can’t perform that action at this time.
0 commit comments