X3 = ( X1 + Y1 ) / X1 * Y1 substitute variables
X3 03 09 X1 07 Y1 02 04 X1 Y1 substitute operators and parentheses.
Note multiplication is represented by juxtaposition.
07Y10204X1Y1 group into 12-byte words.
0000X30309X1
Assembler (x86)
#include <stdio.h>
int main(void)
{
printf("hello, world\n");
}
(An example in C)
HTML, CSS & JavaScript
<!DOCTYPE html>
<html>
<head>
<title>Homepage</title>
</head>
<body>
<!-- Text -->
<h1>Hello World!!</h1>
<p>This is mah new page!!</p>
<!--images -->
<img src="happy.jpg" alt="I was happy">
<!-- links to other documents -->
<a href="see_more.html">See More</a>
</body>
</html>
h1 {
color: red;
}
<!-- html fragment: for exercise only -->
<h1>My Red Heading</h1>
//Create your own pop-up
// In your console (right-click,
// select `console` tab)type:
alert("I RAWK!!!");
//now try
document.body.innerHTML="<h1>My Heading</h1>";
Copy that text and lets go to codepen