A 👏 coding 🔟 language 💯 powered 💪
💯 blazeIt👏👏{
🔚 1👌
}
💯 🏠 👏 💯 test 👏 🅰 👉 👉 abc 👏 {
👶 💯 a = 1 👌
👶 💯 👉b = NULL 👌
👶 🅰 c = 'a'👌
(a < 5) 🤔 ⏱ {
(a == 2) 🤔 {
a = (3 ✖ 2) ➕ 420👌
} 🤷 {
}
a = a ➕ 📲blazeIt👏👏👌
}
a = a - 1👌
🖨 👏a👏 👌
🔚 0 👌
}
The above .cmoji program translates to the following c++ code:
int blazeIt() {
return 420;
}
int main(int test, char** abc) {
int a = 1;
int* b = NULL;
char c = 'a';
while (a < 5) {
if (a == 2) {
a = (3 * 2) + 420;
}
else {
}
a = a + blazeIt();
}
a = a - 1;
cout << a << endl;
return 0;
}