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

feat: generate smaller variable names #1036

Open
wants to merge 7 commits into
base: master
Choose a base branch
from

Conversation

Aenimus
Copy link
Member

@Aenimus Aenimus commented Jan 19, 2025

Currently, the 27th variable will be aa but the 53rd will be aaa. This means the size of the variable grows quickly.

In this approach, the variable names grows much slower:
a, ..., z, aa, ..., az, ba, ..., zz, aaa, aab, ...

2 chars at 27 variables,
3 chars at 703 variables,
4 chars at 18279 variables, etc.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants