btwael / mammouth

Unfancy PHP
http://mammouth.boutglay.com
MIT License
214 stars 22 forks source link

Destructuring support #37

Closed DylanPiercey closed 10 years ago

DylanPiercey commented 10 years ago

Would it be possible to add destructuring similar to coffee-script?

IE: {firstName, lastName} = $_GET[] --> $firstName = $_GET["firstName"]; $lastName = $_GET["lastName"];

btwael commented 10 years ago

I am now working in a new version of mammouth and I will add this feature to mammouth

btwael commented 10 years ago

Supported now see the example: http://mammouth.wamalaka.com/#try:{{%0A{firstName%2C%20lastName}%20%3D%20_GET%0Aecho%20firstName%3C-%3E%27%20%27%3C-%3ElastName%0A}}