Time between two events - no delay

What do you mean can't make it happen? It's just a variable assignment. Do you want the time between interrupts? So the fin time for this one should be the start time for the next one?

void react()
{
  long fin = millis();
  revs =(fin - start);
  start = fin;   // sets up start for the next interrupt
  Serial.println(revs);
  
}