Underscore example:
_.each([1, 2, 3], function(num) { alert(num); });| { | |
| "FileVersion": 3, | |
| "EngineAssociation": "5.2", | |
| "Description": "Minimum viable plugin dependencies for a usable Unreal Engine project", | |
| "DisableEnginePluginsByDefault": true, | |
| "Plugins": [ | |
| { | |
| "Name": "PluginBrowser", | |
| "Enabled": true | |
| }, |
| [package] | |
| name = "specs-roguelike" | |
| version = "0.1.0" | |
| authors = ["youCodeThings"] | |
| edition = "2018" | |
| [dependencies] | |
| tcod = "0.13" | |
| specs = "0.14.0" |
| # -*- coding: utf-8 -*- | |
| """ | |
| codegen | |
| ~~~~~~~ | |
| Extension to ast that allow ast -> python code generation. | |
| :copyright: Copyright 2008 by Armin Ronacher. | |
| :license: BSD. | |
| """ |