diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-04-18 20:47:44 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-04-18 20:47:44 +0900 |
commit | 425e16ad894fd23d7c5b061acffba6cd04a1b1db (patch) | |
tree | e1f794e07812bcd59a4b518747bf9dc5c2a5a163 /indenters/example.sql | |
parent | 11451cea9db07b2a257297de57d76a8dbb7e3a5e (diff) | |
download | universal-indent-gui-tqt-425e16ad894fd23d7c5b061acffba6cd04a1b1db.tar.gz universal-indent-gui-tqt-425e16ad894fd23d7c5b061acffba6cd04a1b1db.zip |
Added code to load last open file or an example or an untitled file.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'indenters/example.sql')
-rwxr-xr-x | indenters/example.sql | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/indenters/example.sql b/indenters/example.sql deleted file mode 100755 index 077eeb8..0000000 --- a/indenters/example.sql +++ /dev/null @@ -1,37 +0,0 @@ -CREATE PACKAGE BODY b IS - -PROCEDURE proc1 IS -BEGIN -IF 7 <> 5 THEN -FOR rec IN (SELECT * FROM dual - WHERE g = 5) LOOP -NULL; -END LOOP; - END IF; -END; - -PROCEDURE recurse IS - b number:=5; - d456 number:=456; -BEGIN - recurse; - proc1; - a := (a + 1 - +4 - + 5 - + 8); - c := f + 4 + 34; - total := earth +sky; - - --this is comment - - uk:=h; - g:=l; - exception - when no_data then - hello; - END; - - BEGIN - NULL; -END; |