Is there any way to “reorganise” a code? For example a messed up code:
function test()
print ("yes")
if true then
print ("yes")
end
end
this is all messed up, is there any way to reorganise it without needing to type every single line again?
What I want is for example changing it to this:
function test()
print("yes")
if true then
print("yes")
end
end
Thanks!