This question has probably been asked before, but I cannot find it.
Before I used mathematica I have worked with VisualStudio from MS (C++), Python (PyCharm), Java (Eclipse, NetBeans).
In all that IDEs it is possible to format the source code, so that is easy readable.
In mathematica I am looking for a solution which makes out of the following example code:
Do[x = i; Do[y = j; Do[z = k;, {k, 1, 3}];, {j, 1, 3}];, {i, 1, 3}]
the formatted code:
Do[
x = i;
Do[
y = j;
Do[
z = k;
, {k, 1, 3}
];
, {j, 1, 3}
];
, {i, 1, 3}
]
Comments
Post a Comment