Skip to content

Commit

Permalink
Add SAS lexer (#1107)
Browse files Browse the repository at this point in the history
This commit adds a lexer for SAS.
  • Loading branch information
tomsutch authored and pyrmont committed Jul 17, 2019
1 parent 0a736e5 commit 9a895d9
Show file tree
Hide file tree
Showing 4 changed files with 675 additions and 0 deletions.
13 changes: 13 additions & 0 deletions lib/rouge/demos/sas
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
data sim;
do i = 1 to 100;
x1 = rand("Normal");
x2 = rand("Binomial", 0.5, 100);
output;
end;
run;

proc means data=sashelp.class;
class sex;
var height weight;
output out = mean_by_sex;
run;
Loading

0 comments on commit 9a895d9

Please sign in to comment.