Testing python lsp.

master
Tomasz Polgrabia 2025-03-06 19:34:45 +01:00
parent 51116c0ec4
commit ddd8a20949
1 changed files with 7 additions and 0 deletions

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")