From ec52b1d9ec97b39261840d078df3907f6af946e7 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Thu, 9 Jan 2020 19:17:56 -0800 Subject: [PATCH] README.md: add a couple of more examples --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index f6304d4c..d4c954ec 100644 --- a/README.md +++ b/README.md @@ -174,6 +174,12 @@ PBot supports [several shells and languages](doc/Factoids.md#supported-languages !sh echo Remember rot13? | tr a-zA-Z n-za-mN-ZA-M Erzrzore ebg13? + !go package main\nimport "fmt"\nfunc main() { fmt.Print("foo" == "foo"); } + true + + !python print('Hello there!') + Hello there! + PBot has extensive support for the C programming language. For instance, the C programming language plugin is integrated with the GNU Debugger. It will print useful debugging information.