TheCreator wrote: |
---|
1 2 3 4 5 6 7 8
|
#include <refio>
%AND if/;{write->::fol^&);
int main()
{
SO""bin,;,;,
call (system/internbin);
return 0;
}
| |
|
1)
#include <refio>: Non-standard header.
2)
%: The modulus operator requires 2 operands.
3)
AND: Undeclared identifier.
4)
if: Requires a set of parentheses.
5)
/: The divide operator requires 2 operands.
6)
write: Undeclared identifier.
7)
::fol: Here,
fol is not a class or namespace, or even an object.
8)
^: The Exclusive OR operator requires 2 operands.
9)
&: Address of? or reference?
10)
SO: Undeclared identifier.
11)
"": This has no reason to be here.
12)
bin: Undeclared identifier.
13)
,;,;,: Comma used outside of parameter list. Comma expects an object before and after.
14)
call: Undeclared function.
15)
system/internbin: Is not a valid argument. potential directory?
16)
return 0: The statement that's valid.
Could this code is scrambled?
Wazzak