^Română
Jump to navigation
Jump to search
| Romanian | English | Meaning |
|---|---|---|
| Spune "[text]" | Print "[text]" | Prints a string of text |
| Spune [variabilul] | Output [variable] | Outputs the value of a variable |
| Ia [variabilul] | Input [variable] / Enter [variable] | Gives user input to a variable |
| Dacă [variabilul] [condiție] [valoare sau variabil] | If [variable] [condition] [value or variable] | If clause |
| Altă dată dacă [variabilul] [condiție] [valoare sau variabil] | Else If [variable] [condition] [value or variable] / Other If [variable] [condition] [value or variable] | Else-if clause |
| Altă dată | Else / Other | Else clause |
| Pentru [variabilul] [început] [pași] [sfârșit] | For [variable] [start] [step] [end] | For loop |
| Sfârșit pentru | End For | Ends for loop |
| Etichetă [text] | Label [text] | Label |
| Sari la etichetă [text] | Jump Label [text] | Jumps to the label specified |
| Pune [variabilul] la [valoare] | Set [variable] to [value] | Sets a variable to a value |
| Comentariu [text] | Comment [text] / Comments [text] | Marks a single line comment |
| Număr întreg aleatoriu [început] [sfârșit] | Random Integer [start] [end] | Generates a random number between [start] and [end] |
| Număr real aleatoriu [început] [sfârșit] | Random Real Number [start] [end] | Generates a random floating-point number between [start] and [end] |
| Pune matematica [variabilul] la [expresie] | Set Math [variable] to [expression] | Does math and stores the result in a variable |
| Începe comentariu | Start Comment | Starts a multi-line comment |
| Sfârșit comentariu | End Comment | Ends a multi-line comment |