You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
import[] is unnecessary, and it will generate a bunch of files even though they might never be used.
Many commands that are now dependent to import[] should not be anymore for the same reason as above, and it's also fairly slow since they're called like a function
Many commands will not work if being put in a same line:
Example: if[] something == something cnd[] "a" "b" "c" "d"
will not work
Describe the solution you'd like
The key in solving these problems are a file called libgen.bat. This file will generate codes for commands.
Make import[] optional.
Make commands independent and use libgen.bat to generate libs into a file like before. Also, the codes should be in a parenthesized block to gain more performance. And there will be an option on whether you want to use commands as functions or just compiling them to normal codes.
The codes should be in a parenthesized block so that the one line codes will work. Also, the compiler should be remade.
Describe alternatives you've considered
There are no alternatives.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
import[]
is unnecessary, and it will generate a bunch of files even though they might never be used.import[]
should not be anymore for the same reason as above, and it's also fairly slow since they're called like a functionExample:
if[] something == something cnd[] "a" "b" "c" "d"
will not work
Describe the solution you'd like
The key in solving these problems are a file called
libgen.bat
. This file will generate codes for commands.import[]
optional.libgen.bat
to generate libs into a file like before. Also, the codes should be in a parenthesized block to gain more performance. And there will be an option on whether you want to use commands as functions or just compiling them to normal codes.Describe alternatives you've considered
There are no alternatives.
The text was updated successfully, but these errors were encountered: