mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
11 lines
87 B
C++
11 lines
87 B
C++
void Inc(int& a)
|
|
{
|
|
a++;
|
|
}
|
|
|
|
int x;
|
|
|
|
void Dec(int& a)
|
|
{
|
|
if(--a == 0) x++;
|
|
}
|