Skip to content
Snippets Groups Projects
badTest.reference 812 B
Newer Older
  • Learn to ignore specific revisions
  • 0:42?
    INTERPRETER: 42
    ERROR on line 0, column 3 : Bad Character(s) found.
    
    1:42^2
    INTERPRETER: 42
    ERROR on line 1, column 3 : Bad Character(s) found.
    
    1:42^2
    INTERPRETER: 2
    2:(42))
    INTERPRETER: 42
    2:(42))
    ERROR on line 2, column 5 : Expected Left Parenthesis or number
    
    (42))
    ----^
    
    INTERPRETER: 0
    3:((42
    ERROR on line 4, column 1 : Expected Right Parenthesis
    
    ERROR on line 4, column 3 : Expected Right Parenthesis
    
    (42 / 0)
    --^
    
    ERROR on line 4, column 8 : Division by zero!
    
    (42 / 0)
    -------^
    
    INTERPRETER: 0
    5:(42 / (1-1))
    ERROR on line 5, column 12 : Division by zero!
    
    (42 / (1-1))
    -----------^
    
    ERROR on line 6, column 2 : Expected Right Parenthesis
    
    42 +/- 3.14159
    -^
    
    ERROR on line 6, column 5 : Expected Left Parenthesis or number
    
    42 +/- 3.14159
    ----^
    
    INTERPRETER: -3.14159
    End Of File!