improve parsing (very janky)

This commit is contained in:
Simon Gardling
2022-02-16 15:50:09 -05:00
parent 6cfaa65450
commit 3279a7035f
3 changed files with 84 additions and 29 deletions

View File

@@ -42,7 +42,7 @@
<h4 id="Not%20Using%20Explicit%20Multiplication">Not Using Explicit Multiplication</h4>
<ul>
<li>Equations such as <code>y=-2x</code> that doesn&#8217;t explicitly request multiplication through the use of an asterisk will fail. Also chaining variables such as <code>y=xxxx</code> will fail, whereas <code>y=x*x*x*x</code> (or <code>y=x^4</code>) will not fail, this also applies for static variables such as <code>e</code>.</li>
<li>Equations such as chaining variables such as <code>y=xxxx</code> will fail, whereas <code>y=x*x*x*x</code> (or <code>y=x^4</code>) will not fail, this also applies for static variables such as <code>e</code> in situations like <code>eeee</code>, will fail.</li>
</ul>
<h4 id="What%20Expressions%20Can%20I%20Use?">What Expressions Can I Use?</h4>