move generators

This commit is contained in:
Ilya Kantor 2019-03-07 13:51:21 +03:00
parent 890b57b75b
commit 5bca8a5ee2
37 changed files with 2 additions and 0 deletions

View file

@ -0,0 +1 @@
alert(user); // no such variable (each module has independent variables)

View file

@ -0,0 +1,3 @@
<!doctype html>
<script type="module" src="user.js"></script>
<script type="module" src="hello.js"></script>

View file

@ -0,0 +1 @@
let user = "John";