Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ <h3>Updates</h3>
<section class="box bugfixes">
<h3>Bugfixes</h3>
<ul>
<li>-</li>
<li>fixen von Problemen mit negativen Zahlen</li>
</ul>
</section>

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ fn main() {
// let equation_string: String = "100+2*2-2^5*8/9-12+5/2*8+12".to_string();
//let equation_string: String = "(3+2)^2 * (4 ^ (-3)) - 5 * (10 / (2 + 3)) + 8 ^ 2".to_string();
// let equation_string: String = "3 + (-2) * (4 - 1)^2 - (-6 / 2 + 3)".to_string();
let equation_string: String = "-(-5)-(-10)*6+5-(3-(6-10))+5^(6+5)".to_string();
let equation_string: String = "-(-5)-(-10)*6+5-(-(6-10))+5^(6+5)".to_string();
println!();
display_terminals("Original Formel".to_string(), &equation_string);

Expand Down