Hacker News new | ask | show | jobs
by erik_seaberg 1112 days ago
In an intro class using Ada I’ve seen

  case Big_Expression_Here is
    when true   => Do_Something;
    when others => Do_Something_Else;
  end case;
and I found myself wondering whether they realize what this is.