Skip to content

Commit

Permalink
Hello World example in PSQL (#803)
Browse files Browse the repository at this point in the history
  • Loading branch information
lilianferreira authored and uwx committed Oct 6, 2019
1 parent 180cff6 commit bc99cc8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion LANGUAGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -1219,7 +1219,7 @@ You can also request a new language to be added to the list, just leave a commen
- [ ] [PROLAN/M](http://esolangs.org/wiki/PROLAN/M)
- [x] [Prolog](https://rosettacode.org/wiki/Hello_world/Text#Prolog)
- [ ] [Proof](http://esolangs.org/wiki/Proof)
- [ ] [PSQL](https://rosettacode.org/wiki/Hello_world/Text#PSQL)
- [x] [PSQL](https://rosettacode.org/wiki/Hello_world/Text#PSQL)
- [x] [Puppet]()
- [ ] [Pure Data](https://puredata.info/)
- [x] [Pure](https://rosettacode.org/wiki/Hello_world/Text#Pure)
Expand Down
7 changes: 7 additions & 0 deletions examples/p/PSQL.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
EXECUTE BLOCK
RETURNS(S VARCHAR(40))
AS
BEGIN
S = 'Hello world!';
SUSPEND;
END

0 comments on commit bc99cc8

Please sign in to comment.