From 10d8ede0d603c59b927d2cd9f092eea5335cbf2b Mon Sep 17 00:00:00 2001 From: Stefano Sanfilippo Date: Sat, 29 Nov 2014 01:08:12 +0100 Subject: [PATCH] Do-while example. --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 9306e10..df2f391 100644 --- a/README.md +++ b/README.md @@ -183,6 +183,20 @@ defined as follows: e brematura anche, se +For example: + + voglio antani, Necchi come se fosse 10 + stuzzica: + antani come fosse antani menu 1 + e brematura anche, se antani maggiore di 0 + +maps to: + + int antani = 10; + do { + antani = antani - 1; + } while (antani > 0); + Branch ------