概要
paiza.ioでelixirやってみた。
練習問題やってみた。
練習問題
y = 3x - x^2 の曲線を描け。
サンプルコード
IO.puts """
<!doctype html>
<html>
<head>
</head>
<body>
<button onclick="run()">play</button>
<div id="applet_container"></div>
<script type="text/javascript" src="https://www.geogebra.org/apps/deployggb.js"></script>
<script>
var parameters = {
"prerelease": false,
"width": 570,
"height": 400,
"showToolBar": false,
"borderColor": null,
"showMenuBar": false,
"showAlgebraInput": false,
"showResetIcon": true,
"enableLabelDrags": false,
"enableShiftDragZoom": true,
"enableRightClick": false,
"capturingThreshold": null,
"showToolBarHelp": false,
"errorDialogsActive": true,
"useBrowserForJS": false,
};
var applet = new GGBApplet(parameters, true);
window.onload = function() {
applet.inject('applet_container');
}
function run() {
"""
IO.puts "ggbApplet.evalCommand('f(x)=3x-x^2');"
IO.puts """
}
</script>
</body>
</html>
"""
成果物
以上。