From b1428157b1f80029e2de3a3204394118cd7811bb Mon Sep 17 00:00:00 2001 From: yabwon Date: Tue, 4 Feb 2020 19:21:56 +0100 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9b84c09..8013031 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ filename packages ""; ### The Developer: To create your own package: - Read the `SAS(r) packages - the way to share (a how to)- Paper 4725-2020.pdf` to learn more. -- Download and use `generatePackage.sas` file (developer part of the framework) and the `loadpackage.sas` file (required for testing). +- Download and use the `generatePackage.sas` file (developer part of the framework) and the `loadpackage.sas` file (required for testing). #### If you have any questions, suggestions, or ideas do not hesitate to contact me! @@ -33,7 +33,7 @@ Currently the following packages are available: - **SQLinDS**, based on Mike Rhoads' article *Use the Full Power of SAS in Your Function-Style Macros*. The package allows to write SQL queries in the datastep, e.g. ``` data class; - set %SQL(select * from sashelp.class ordered by age); + set %SQL(select * from sashelp.class order by age); run; ``` - **DFA** (Dynamic Function Arrays), contains set of macros and FCMP functions which implement: a dynamically allocated array, a stack, a fifo queue, an ordered stack, and a priority queue, run `%helpPackage(DFA,createDFArray)` to find examples.