Skip to content

Instantly share code, notes, and snippets.

View ilmoeuro's full-sized avatar

Ilmo Euro ilmoeuro

View GitHub Profile
#include <iostream>
using namespace std;
int main()
{
for (int y=1;y<=10;y++)
{
int x = y * 2;
cout << "2 x " << y << " = " << x << endl;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<canvas id="canvas" style="width:100vw; height:100vh;"></canvas>
<button id="undo" style="position: absolute; left: 10px; top: 10px;">Undo</button>