Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for let expressions #2

Open
Atreyagaurav opened this issue Feb 10, 2022 · 0 comments
Open

Support for let expressions #2

Atreyagaurav opened this issue Feb 10, 2022 · 0 comments
Labels
enhancement New feature or request

Comments

@Atreyagaurav
Copy link
Owner

Need to make the format-args-let function that can format the let expression like the following.

(defun runoff-depth (cfs)
(let ((area-miles 0.2)
      (time-secs (* 1 60 60)))
  (/ (* 12 cfs time-secs) area-miles (expt 5280 2))))

(runoff-depth 60)

Into something like:

Given (area-miles=0.2;time-secs=3600):
runoff-depth(cfs):\frac{12 \times cfs \times time-secs }{area-miles \times 5280^{2}}

@Atreyagaurav Atreyagaurav added the enhancement New feature or request label Feb 11, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant