# example XOD hybrid code builder Byte IN1 Pulse IN2 Number IN3 Byte OUT1 Pulse OUT2 Number OUT3 int myInteger = 4; auto myString = "what a good idea!"; float myFloat = 3.14159; myInteger = 5; open (myfile, read); ## only executed once on program startup myVal = IN1; myOtherVal = IN2; for (i = IN3, i < myInteger, i++) { myFloat *= 2; } OUT1 = myVal; if (IN2 == True) { OUT2 = True; } else { OUT2 = False; } OUT3 = myString