My solutions appears to need an '#include ' to be able to compile models with , but the sample solution does not seem to contain that.
E.g., the following compiles, but if the include is removed, it does not
capsule Top {
[[rt::impl_preface]]
` #include <iostream> `
statemachine {
state State;
initial -> State
`
Log::out << "Hello World!" << std::endl;
exit(0);
`;
};
};
My solutions appears to need an '#include ' to be able to compile models with , but the sample solution does not seem to contain that.
E.g., the following compiles, but if the include is removed, it does not