Skip to content

Commit 8bd83c3

Browse files
committed
improvements
1 parent 96bddb6 commit 8bd83c3

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

epicshop/post-set-playground.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff 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
}

exercises/01.expressions-and-output/01.problem.hello-world/README.mdx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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
1617
console.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
2124
see your output!

0 commit comments

Comments
 (0)