summaryrefslogtreecommitdiff
path: root/src/shell-interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shell-interface.h')
-rw-r--r--src/shell-interface.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shell-interface.h b/src/shell-interface.h
index 0a98ce05a..5b01b4be6 100644
--- a/src/shell-interface.h
+++ b/src/shell-interface.h
@@ -138,7 +138,7 @@ struct ShellExternalInterface final : ModuleInstance::ExternalInterface {
Literal callImport(Import *import, LiteralList& arguments) override {
if (import->module == SPECTEST && import->base == PRINT) {
for (auto argument : arguments) {
- std::cout << argument << '\n';
+ std::cout << '(' << argument << ')' << '\n';
}
return Literal();
} else if (import->module == ENV && import->base == EXIT) {