Testing python lsp.

This commit is contained in:
Tomasz Półgrabia 2025-03-06 19:34:45 +01:00
parent 51116c0ec4
commit ddd8a20949

View file

@ -0,0 +1,7 @@
x = [1, 2, 3, 4]
y = [2*el+1 for el in x]
for el in y:
print("El {}".format(el))
print("Done")