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 | |
| echo "Yep, PHP can be ran"; | |
| ?> |
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
| nations = [] | |
| nations.append({"nationID": 12234, "nationName": "Python Nation", "nationRuler": "pyRuler"}) | |
| nations.append({"nationID": 13254, "nationName": "Other Nation", "nationRuler": "ermagerd"}) | |
| for nat in nations: | |
| print nat["nationID"] | |
| print nations |
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
| #include <Camera.h> | |
| Camera::Camera(void): | |
| m_Model(glm::mat4(0)), | |
| m_View(glm::mat4(0)), | |
| m_Projection(glm::mat4(0)) | |
| { | |
| } | |
| Camera::~Camera(void) |
NewerOlder