File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -394,7 +394,7 @@ impl Executor {
394
394
}
395
395
}
396
396
buffer
397
- } ; // Push string value on the stack
397
+ } ; // Push string value on the stack
398
398
self . stack . push ( Type :: String ( string) ) ;
399
399
} else if chars[ 0 ] == '[' && chars[ chars. len ( ) - 1 ] == ']' {
400
400
// Push list value on the stack
@@ -700,11 +700,11 @@ impl Executor {
700
700
// Standard output
701
701
"print" => {
702
702
let a = self . pop_stack ( ) . get_string ( ) ;
703
-
704
- let a = a. replace ( "\\ n" , "\n " ) ;
705
- let a = a. replace ( "\\ t" , "\t " ) ;
706
- let a = a. replace ( "\\ r" , "\r " ) ;
707
-
703
+
704
+ let a = a. replace ( "\\ n" , "\n " ) ;
705
+ let a = a. replace ( "\\ t" , "\t " ) ;
706
+ let a = a. replace ( "\\ r" , "\r " ) ;
707
+
708
708
if let Mode :: Debug = self . mode {
709
709
println ! ( "[Output]: {a}" ) ;
710
710
} else {
You can’t perform that action at this time.
0 commit comments