mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-01 00:38:48 +00:00
8 lines
80 B
C++
8 lines
80 B
C++
|
|
int foo()
|
|
{
|
|
int x;
|
|
double y = 2;
|
|
double z = x + y;
|
|
return z;
|
|
}
|