(d)
| 15 | """) |
| 16 | |
| 17 | def basicTypes(d): |
| 18 | d["_mixed"] = '_mixed' # This variable does not exist and will therefore yield the type "mixed" |
| 19 | d["_string"] = '""' |
| 20 | d["_bool"] = 'true' |
| 21 | d["_int"] = '1' |
| 22 | d["_float"] = '1.0' |
| 23 | d["_array"] = '[]' |
| 24 | d["_void"] = '' |
| 25 | |
| 26 | def require(module): |
| 27 | print('var %s = require("%s");\n' % (module, module)) |