-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added dual.html test for both pyodide and micropython
- Loading branch information
1 parent
3f10d70
commit e521831
Showing
2 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
<script type="module" src="../core.js"></script> | ||
</head> | ||
<body> | ||
<script type="micropython"> | ||
print("micropython") | ||
</script> | ||
<script type="pyodide"> | ||
print("pyodide") | ||
</script> | ||
<script type="micropython" worker> | ||
print("micropython worker") | ||
</script> | ||
<script type="pyodide" worker> | ||
print("pyodide worker") | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters