We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
During I add a test for #40. I found that this syntax does not work as I expected.
a = range(100, 0, -1) len(a) <- 100 b = [a for e in a] len(b) <- should be 100 but 0 in gpython