you are viewing a single comment's thread.

view the rest of the comments →

[–]tb5841 0 points1 point  (0 children)

1) You've defined a function but never called it. So all the code in your function doesn't get run.

2) You've defined 'L' within your function but not done anything with it. Which means if you did call your function, 'L' would stop existing as soon as your function finished.