Python feature compatabilityΒΆ

Python Feature Shellshock Support Example
Strings YES
"here we go"
Integers/Floats YES
my_val = 3.14
Function definitions YES
def doit(var1, var2='default'):
    print(var1)
    print(var2)
doit('once', 'twice')