Okay.... First off I see a lot of posts on here and a lot of peoples concern... I AM NOT A BOT!!! now then!! I am having an issue with something.... I can't seem to do even this simple code below. I mean the computer won't!
Scene 1, Layer 'Layer 1', Frame 1, Line 2, Column 1 1093: Syntax error.
Scene 1, Layer 'Layer 1', Frame 1, Line 2, Column 10 1084: Syntax error: expecting stringliteral before lessthan.
Those are my 2 error's I get back when I do this code. Even tried the other ones on this site any of them with the hash tags don't seem to work. I'm curious if I need to change a setting or what? I just downloaded and updated FLASH last night so pretty lost as to why this simple code won't work. Even looked it up online the error 1084 and most of them were about missing brackets!! Is this a new error or something?? well I appreciate any and all help! Alas, if you read my bio you know I am, but a wee peon of a coder, but even I know that should work! Thanks for your time and have a good day!!
1 2 3 4 5 6 7
|
// my first program in C++
#include <iostream>
int main()
{
std::cout << "Hello World!";
}
|