Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 467 Bytes

MagicDate.md

File metadata and controls

24 lines (18 loc) · 467 Bytes

Magic dates (MagicDate)

Description

Magic date is any date in your code that does not immediately become apparent without being immersed in context.

Examples

Bad

If now < '20151021' Then
    HoverBoardIsReal = Undefined;
EndIf;

Good

PredictedDate = '20151021'; 
If now < PredictedDate Then
    HoverBoardIsReal = Undefined;
EndIf;