HP Prime for All
English
Русский
Name | Dé |
Description | Dice throwing simulation game. |
Author | Mickaël Nicotera |
Source code formatted by website engine
BEGIN
LOCAL D, L1;
ROUND(RANDOM(0.5, 6.5), 0)▶D;
{"⚀", "⚁", "⚂", "⚃", "⚄", "⚅"}▶L1;
PRINT(L1[D]);
END;