Hacker News new | ask | show | jobs
by wayy 1291 days ago
The p50 time is around 2s end to end not under load. Bear with us as we scale our systems!
1 comments

This might help: https://beta.sayhello.so/search?q=the+p50+time+is+around+2s+...

It has the code you need:

  INPUT X
  IF X > 10 THEN
      PRINT "X is greater than 10."
  ELSE
      IF X < 10 THEN
          PRINT "X is less than 10."
      ELSE
          PRINT "X is equal to 10."
      END IF
  END IF