-
Notifications
You must be signed in to change notification settings - Fork 16
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
save constants as variables #78
Comments
This problem effectively consists of two parts:
|
I was thinking only about part 2. |
I will probably add part 1 and 2 soon-ish. I don't really want to add a separate configuration-file. I think that would just create confusion. |
Just a small update on this: I have started working on it and even got it to a somewhat working state. But it still requires a bit more work to make sure it doesn't break anything. All the bug-reports and smaller feature-requests have kept my busy, so I didn't find the time to finish this, but it has not been forgotten. |
Is your feature request related to a problem? Please describe.
very common thing that we need to do by hand, would be nice if it could be done automatically.
ideal would be a flag to set how many useages to do this for.
Describe the solution you'd like
either:
for example
:x=math_pi+sqrt(math_pi*:x)
should compile to:x=3.142+sqrt(3.142*:x)
Describe alternatives you've considered
doing this by hand is tedious.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: