SAS mode

x
 
1
libname foo "/tmp/foobar";
2
%let count=1;
3
4
/* Multi line
5
Comment
6
*/
7
data _null_;
8
    x=ranuni();
9
    * single comment;
10
    x2=x**2;
11
    sx=sqrt(x);
12
    if x=x2 then put "x must be 1";
13
    else do;
14
        put x=;
15
    end;
16
run;
17
18
/* embedded comment
19
* comment;
20
*/
21
22
proc glm data=sashelp.class;
23
    class sex;
24
    model weight = height sex;
25
run;
26
27
proc sql;
28
    select count(*)
29
    from sashelp.class;
30
31
    create table foo as
32
    select * from sashelp.class;
33
34
    select *
35
    from foo;
36
quit;
37

MIME types defined: text/x-sas.