style: 优化 RetCommand 类的输出格式

This commit is contained in:
Luke 2025-07-22 16:36:23 +08:00
parent 07b7d5c40e
commit 70feb1fe5e

View File

@ -44,7 +44,7 @@ public class RetCommand implements Command {
finished.getLocalVariableStore().clearVariables();
int returnAddr = finished.getReturnAddress();
System.out.println("Return " + returnAddr);
System.out.println("\nReturn " + returnAddr);
return returnAddr;
}
}