Pragma or import on first line?

Does it matter if pragma or import is first in Unityscript js? Does the order matter at all?

#pragma strict
import System.Collections.Generic;

or

import System.Collections.Generic;
#pragma strict

pragma strict any unsafe coding or scrict programming practices so the order shouldn’t matter at all when importing things like that you could do it anyway but personally i would keep it at the top :slight_smile: