Merge pull request #212 from dcondrey/master

Numerous obscure examples
This commit is contained in:
Mike Donaghy
2015-09-06 20:16:48 -04:00
24 changed files with 339 additions and 1 deletions

5
s/sal.s Normal file
View File

@@ -0,0 +1,5 @@
proc main()
loop
WriteLine("Hello, World!")
endloop
end

5
s/sas.sas Normal file
View File

@@ -0,0 +1,5 @@
%macro putit( string= );
%put &string;
%mend;
%putit(string=Hello World!)

7
s/sather.sa Normal file
View File

@@ -0,0 +1,7 @@
class MAIN is
main is
loop
#OUT + "Hello World!\n"
end
end
end

3
s/scilab.scilab Normal file
View File

@@ -0,0 +1,3 @@
while(1)
printf("hello world");
end

4
s/sql.sql Normal file
View File

@@ -0,0 +1,4 @@
CREATE TABLE HELLO (HELLO CHAR(12))
UPDATE HELLO
SET HELLO = 'HELLO WORLD!'
SELECT * FROM HELLO