-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Solution Exo Clic
- Loading branch information
Showing
4 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,13 @@ | ||
var image := displayNewImageIn('feeGars1.png', '#gameZone') | ||
awaitClickBeep(image) | ||
displayNewMessage("Coucou ! Je suis Ciel.") | ||
displayNewMessage("Et toi comment tu t'appelle ?") | ||
var nom := awaitHumanText() | ||
displayNewMessage('Ravi de faire ta connaissance ' + nom + ' !') | ||
awaitClickBeep(image) | ||
displayNewMessage('Au revoir !') | ||
|
||
|
||
|
||
|
||
|
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> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>hello you</title> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/cl4cnam/funcSug/lib.css"> | ||
</head> | ||
|
||
<body> | ||
<header> | ||
</header> | ||
<div id="gameZone"></div> | ||
|
||
<script src="https://cdn.jsdelivr.net/gh/cl4cnam/funcSug/libStd.fg" type="application/funcsug"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/cl4cnam/funcSug/libDOM.fg" type="application/funcsug"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/cl4cnam/funcSug/libDOMSVG.fg" type="application/funcsug"></script> | ||
<script src="helloYou.fg" type="application/funcsug"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/cl4cnam/funcSug/parser.js"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/cl4cnam/funcSug/parserPy.js"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/cl4cnam/funcSug/interpreter.js"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/cl4cnam/funcSug/DOMloader.js"></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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
py -m http.server 8000 --bind 127.0.0.1 |