zettacode.files/hello_world.text/sas.txt in zettacode-0.1.0 vs zettacode.files/hello_world.text/sas.txt in zettacode-0.1.1

- old
+ new

@@ -1,4 +1,4 @@ -* U d . W o wdow * - _u_ -u "H !" -u +/* Using a data step. Will print the string in the log window */ +data _null_; +put "Hello world!"; +run;