Fixed byref variable pointer from rcbasic_build dev generator

This commit is contained in:
n00b
2024-09-16 22:20:09 -04:00
parent 526478b618
commit a5aedb1fa7
11 changed files with 2547 additions and 2515 deletions

12
rcbasic_runtime/rc_test.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef RC_TEST_H_INCLUDED
#define RC_TEST_H_INCLUDED
void rc_tst(double* z)
{
std::cout << "this is a test" << std::endl;
*z = 37;
std::cout << "the end" << std::endl;
}
#endif // RC_TEST_H_INCLUDED