Yosh
Yosh
Semicolons
Remove semicolons from syntax ;) **Not bad** ``` func Animal(name) { this.move = func (distance) { alert('\(name) moved \(distance)m.'); }; } var sam = new Animal('Sammy the Python'); sam.move(45); ```...
Allow configuration to set the posts permalink. For example: ```bash TOTA_PERMALINK="/:year/:month/:day/:title" ``` Should create posts with the directory structure: ```bash posts/2019/06/29/hello-world
Add a `--template` option to the create CLI command. ```bash tota new --template posts.mustache "Hello, world!" ```