Skip to content

Commit eddc8a6

Browse files
committed
feat: global variables name
1 parent 588bcbb commit eddc8a6

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
gl_num = 10
2+
gl_s = "hello python"
3+
gl_c = 3
4+
5+
6+
def demo():
7+
num = 1
8+
print(num)
9+
print(gl_s)
10+
print(gl_c)

0 commit comments

Comments
 (0)