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
import time | |
print "This is a fortune teller. You will enter some information," | |
print "and I will tell you your fortune." | |
time.sleep(1) | |
name = raw_input("What is your name? ") | |
print "Hi,",name, "let's get started with the questions." | |
time.sleep(1) |
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 Casey { | |
public $hair = 'brown'; | |
public $eyes = 'brown'; | |
public $loves = array('monkeys', 'SciFi', 'texas', 'music'); | |
} | |
$human = new Casey(); | |
$human->birthday('2015-02-02'); | |
$human->fingers = 10; |