not double quotes

This commit is contained in:
Chris Wanstrath 2025-10-25 10:26:18 -07:00
parent 5988e75939
commit d7f613f2e4

View File

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