Skip to content

Instantly share code, notes, and snippets.

@danielchalef
Last active December 20, 2016 00:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielchalef/60e35332fc40e2be46a186ac3672b876 to your computer and use it in GitHub Desktop.
Save danielchalef/60e35332fc40e2be46a186ac3672b876 to your computer and use it in GitHub Desktop.
data _null_;
call streaminit(54321);
array s2 {10} ;
do i = 1 to 10;
s2{i} = rand("Uniform");
if i <= 5 then put
s2{i};
end;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment