From 9775a9b920bf6b208f59432fd1131fa369345185 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Thu, 9 Jan 2020 19:19:33 -0800 Subject: [PATCH] README.md: separator between examples --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index d4c954ec..977cbc5e 100644 --- a/README.md +++ b/README.md @@ -174,9 +174,13 @@ 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!