

















c++
auto &&GetTrackNamePre = [](int Kills) -> const char * {
if(Kills >= 5)
return "is on a ";
else if(Kills >= 10)
return "has a ";
else if(Kills >= 15)
return "is ";
return "";
}; 













































[], yes[1, 2, 3] for a nonempty listlist, e.g. list("ddnet") is ["d", "d", "n", "e", "t"]









WINAPI, which expands to __stdcall, have no meaning on variable declarations.
```
Severity Code Description Project File Line Suppression State
Error C2143 syntax error: missing ')' before '(' engine-shared src\base\system.cpp 4242
Warning C4229 anachronism used: modifiers on data are ignored engine-shared src\base\system.cpp 4242
Error C2059 syntax error: ')' engine-shared src\base\system.cpp 4242
Error C2059 syntax error: ')' engine-shared src\base\syste...

First = input("First: ")
Second = input("Second: ")
Sum = float(First) + float(Second)
print("Sum: " + str(sum)) 


First = input("First: ")
Second = input("Second: ")
Sum = float(First) + float(Second)
print("Sum: " + str(sum)) 



First = input("First: ")
Second = input("Second: ")
Sum = float(First) + float(Second)
print("Sum: " + str(sum)) print("Sum:", Sum)



print(f"Sum: {Sum}") or print("Sum: {}".format(Sum))



str on it itself








print("{} + {} = {}".format(First, Second, Sum)) (edited)
Hacker News β’ 2022-10-16 04:14:11Z 

print("{} + {} = {}".format(First, Second, Sum)) (edited)

























3
















































suuure






#!/bin/sh
read times
for i in $(seq $times)
do
echo /points Meekrioz
done



temperature = float(input("temperature: "))
unit = input("(C)elsius or (F)ahrenheit: ")
if unit.upper() == "F":
print("Temperature in Fahrenheit: ",temperature * 1.8 + 32)
elif unit.upper() == "C":
print("Temperature in Celsius: ",(temperature - 32) * 5/9) (edited)






















print("Temperature in Celsius: ",(temperature - 32) * 5/9)"
the "temperature - 32" has to be in a () because of the math shit


















(edited)











for(
int i = 0;
i < 10;
i++)
int i;
for(i = 0; i < 10; ++i)



















a->b(x, y) is internally b(a, x, y)

#include <iostream>
using namespace std;
struct Foo {
void bar(int x) {
cout << x << endl;
}
};
int main()
{
Foo *foo = nullptr;
foo->bar(42);
return 0;
}bar is virtual it just prints nothing

































































































































