Staging
v0.8.1
https://github.com/git/git
Raw File
Tip revision: 5fa0f5238b0cd46cfe7f6fa76c3f526ea98148d9 authored by Junio C Hamano on 16 August 2019, 17:28:23 UTC
Git 2.23
Tip revision: 5fa0f52
post
10.downto(1) {|y| puts y}
(1) (-1e10) (0xabcdef) 'y'
[x] x->y x.y
!x ~x x++ x-- x*y x&y
x*y x/y x%y
x+y x-y
x<<y x>>y
x<y x<=y x>y x>=y
x==y x!=y
x&y
x^y
x|y
x&&y
x||y
x?y:z
x=y x+=y x-=y x*=y x/=y x%=y x<<=y x>>=y x&=y x^=y x|=y
x,y
back to top