first commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Menampilkan todo di list
|
||||
*/
|
||||
function showTodoList()
|
||||
{
|
||||
global $todoList;
|
||||
|
||||
echo "TODOLIST" . PHP_EOL;
|
||||
|
||||
foreach ($todoList as $number => $value) {
|
||||
echo "$number. $value" . PHP_EOL;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user