This website works better with JavaScript
Home
Explore
Register
Sign In
SongZihuan
/
Gwarf
mirror of
https://github.com/SongZihuan/GWARF.git
Watch
1
Star
0
Fork
0
Files
Issues
0
Wiki
Branch:
master
Branches
Tags
master
Gwarf
/
demo
/
3.gwf
3.gwf
89 B
Permalink
History
Raw
1
2
3
4
5
def a(x,y,*a,z,**k){
print(x + y * a[1] + z / k["b"])
}
a(*[2,3],3,4,5,6,b=5,**{"z":2})