Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tigoCaval authored May 28, 2021
1 parent 96ceae6 commit 918b08a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,18 @@ Example: using the number generator for lottery games in Brazil
Second parameter: Number of tickets you want to play.
return: array [][].
**/
$game->megaSena(6,2)
$game->quina(5,2)
$game->megaSena(6,2);
$game->quina(5,2);
$game->lotoFacil(15,2);
$game->lotoMania(50,2);
$game->superSete(7,2);
```
Example: Generating random numbers and the **Mega-Sena** ticket quantity
```php
print_r($game->megaSena(6,2))
print_r($game->megaSena(6,2));
/**result:
[
[0]=> [7,17,31,32,40,47]
[0]=> [07,17,31,32,40,47]
[1]=> [10,23,35,37,39,40]
]
**/
Expand Down

0 comments on commit 918b08a

Please sign in to comment.