Replies: 1 comment
-
Sorry wrong repo |
Beta Was this translation helpful? Give feedback.
0 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