Updated Lua porting notes

This commit is contained in:
aconconi
2022-10-14 20:48:31 +02:00
parent 71d53f167e
commit 79f197c5a3

View File

@@ -4,8 +4,13 @@ Conversion to [Lua](https://www.lua.org/) by Alex Conconi
---
### Porting notes for Lua:
### Porting notes for Lua
- This is a straightfoward port with only minor modifications for input validation and text formatting.
- The "Try again?" question accepts 'y', 'yes', 'n', 'no' (case insensitive), whereas the original BASIC version defaults to no unless 'YES' is typed.
- The "How many rolls?" question presents a more user friendly message in case of invalid input.
- This is a straightfoward port with only minor modifications for input
validation and text formatting.
- The "Try again?" question accepts 'y', 'yes', 'n', 'no' (case insensitive),
whereas the original BASIC version defaults to no unless 'YES' is typed.
- The "How many rolls?" question presents a more user friendly message
in case of invalid input.