Re: LMMS needs coders
Posted: Fri Mar 18, 2022 5:05 pm
Thank you watching it now. 

I like to get back to this. You gave very good info which should help people wanting to start coding.Monospace wrote: ↑Thu Mar 17, 2022 4:13 pmI don't think I can help you beyond that, since I myself know very little about programming. However, I can direct you to the LMMS Discord, which is where the devs usually are- they're not on the forums, you'll have noticed. There, you can ask for help compiling, request resources for learning C++, etc. They can definitely help you a lot more. And there, you can also discuss more easily and directly.
Good luck, GPS, one needs lots of it with programming languages :]
Not so, you can post formulas
Code: Select all
#include <iostream> //input / output
#include <string>
using namespace std; //controversial but used a lot
int main()
{
bool Y, A, B; //3 boolean-states
Y=false; //Make sure no dangerous event takes place initially
cout<<"Insert state of A & B: "<<endl; //1: True 0: False
cin>>A>>B; //input
if(A&&!B) //boolean expression Y= A+ not B
Y=true; //condition is correct
else Y=false; //all other conditions are WRONG
cout << Y << endl; //State of the machine
if(Y)
cout<<"All fine"; //check passed
else //checks failed!!!
cout<<"DANGER! REMOVE PLUG! ";
}