XPost: alt.folklore.computers   
   From: OFeem1987@teleworm.us   
      
   rbowman wrote this post by blinking in Morse code:   
      
   > On Sun, 4 Jan 2026 19:04:14 -0500, c186282 wrote:   
   >   
   >>    
   >>   
   >> Actually, don't even like CPP ... plain 'C' has so far met all my   
   >> needs.   
   >   
   > I was thinking about C++ on my walk today. Arduino sketches and other MCU   
   > SDKs refer to C/C++.   
   >   
   > #include    
   > #include    
   >   
   > #define led 12   
   >   
   > RF24 radio(7, 8);   
   > const byte addresses[][6] = {"00001", "00002"};   
   > int angleValue = 0;   
   > boolean buttonState = 0;   
      
   I've been getting used to using the universal initializer (from   
   C++11):   
      
    const byte addresses[][6] { "00001", "00002" };   
    int angleValue { 0 };   
    boolean buttonState { 0 };   
      
   Also getting used to using "in-class" member initialization.   
      
   >    
   >   
   > Anyway C++ is handy in small doses.   
      
   I use it in large doses. :-)   
      
   --   
   My love runs by like a day in June, / And he makes no friends of sorrows.   
   He'll tread his galloping rigadoon / In the pathway or the morrows.   
   He'll live his days where the sunbeams start / Nor could storm or wind uproot   
   him.   
   My own dear love, he is all my heart -- / And I wish somebody'd shoot him.   
    -- Dorothy Parker, part 3   
      
   --- SoupGate-Win32 v1.05   
    * Origin: you cannot sedate... all the things you hate (1:229/2)   
|