This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| STD_OUTPUT_HANDLE EQU -11 | |
| NULL EQU 0 | |
| GLOBAL GobleyGook | |
| EXTERN ExitProcess, GetLastError, GetStdHandle, WriteConsoleA, WriteConsoleOutputA, FormatMessageA | |
| SECTION .data | |
| msg DB "Hello World!", 13, 10, "M", 0 | |
| msg.len EQU $ - msg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Food { | |
| private String name = ""; | |
| private boolean shell = false; | |
| private boolean skin = false; | |
| public Food(String name) { | |
| super(); | |
| setName(name); | |
| } | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| include_once("department_operating.php"); | |
| class DepartmentModel{ | |
| private $mId = ""; | |
| private $mName = ""; | |
| public function __construct($id, $name){ | |
| $this->$mId = $id; | |
| $this->$mName = $name; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class DbAccountFactory{ | |
| /** | |
| * __construct | |
| * Ban New The Class | |
| * | |
| * @access Private | |
| * @author Michael-Chen | |
| * @version 1.0 |