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.
1 parent a0098f3 commit 5abcfa4Copy full SHA for 5abcfa4
JAGL/JAGL.py
@@ -0,0 +1,10 @@
1
+i="""@Hello, World!
2
+#""";p=0;s=[];ts=[]
3
+while p!=len(i):
4
+ if i[p]=="@":
5
+ p+=1
6
+ while i[p]!="\n":ts.append(i[p]);p+=1
7
+ while len(ts)>1:a=str(ts[0])+str(ts[1]);ts.pop(0);ts.pop(0);ts.reverse();ts.append(a);ts.reverse()
8
+ s.append(ts[0]);ts.pop
9
+ if i[p]=="#":s.reverse();print(s[0]);s.reverse();s.pop()
10
0 commit comments