unsigned long currentMillis;
void setup() {
Serial.begin(9600);}
void loop() {
currentMillis=millis;
//currentMillis=millis();
Serial.println(currentMillis);}
// or for fun, try one of these lines instead that casts the '95' back into a function:
//
// Serial.println(((unsigned long (*)(void))currentMillis)());}
//Serial.println(((unsigned long (*)(void))95UL)());}
// for https://forum.arduino.cc/t/millis-program-not-working/968693/