Replies: 1 comment 4 replies
-
I think this is a subject of #594. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Sorry this is a newbie question, but what is the correct way of splitting a project across multiple .cpp2 files?
Say I have this code
main: () =
{
Hello();
}
Hello : () =
{
std::cout << "Hello World";
}
And want to move the definition of Hello into a different file?
Beta Was this translation helpful? Give feedback.
All reactions