bun run repl #2

Merged
probablycorey merged 6 commits from repl into main 2025-10-26 00:24:45 +00:00
Showing only changes of commit d7f613f2e4 - Show all commits

View File

@ -135,7 +135,7 @@ async function repl() {
function formatValue(value: Value, inner = false): string {
switch (value.type) {
case 'string':
return `${colors.green}"${value.value}"${colors.reset}`
return `${colors.green}'${value.value}'${colors.reset}`
case 'number':
return `${colors.cyan}${value.value}${colors.reset}`
case 'boolean':