king1.pyx 333 Bytes
Newer Older
Stefan Behnel's avatar
Stefan Behnel committed
1 2 3
DEF USTUFF = u"Spam"

def uf():
4 5 6 7
    """
    >>> uf()
    It works!
    """
Stefan Behnel's avatar
Stefan Behnel committed
8 9 10 11 12 13
    IF USTUFF == u"Spam":
        print "It works!"
    ELSE:
        print "Doesn't work"

DEF BSTUFF = b"Spam"
14

Stefan Behnel's avatar
Stefan Behnel committed
15
def bf():
16 17 18 19
    """
    >>> bf()
    It works!
    """
Stefan Behnel's avatar
Stefan Behnel committed
20 21
    IF BSTUFF == b"Spam":
        print "It works!"
22
    ELSE:
Stefan Behnel's avatar
Stefan Behnel committed
23
        print "Doesn't work"