-
-
Save dartlab-user/5755931149bfc48c94ac to your computer and use it in GitHub Desktop.
Hello World!
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
{ | |
"origin": "dartlab.org", | |
"url": "http://dartlab.org/#:gistId", | |
"history": [ | |
"9aace131ee1c8027e06c", | |
"7c210d0f19d9a15fd7cb" | |
] | |
} |
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
<h1>Hello from HTML!</h1> | |
<h1><span/></h1> |
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
// Go ahead and modify this example. | |
import "dart:html"; | |
var greeting = "Hello from Dart!"; | |
// Displays a greeting. | |
void main() { | |
// This example uses HTML to display the greeting and it will appear | |
// in a nested HTML frame (an iframe). | |
document.body.append(new HeadingElement.h1()..appendText(greeting)); | |
} |
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
span:after { | |
content: "Hello from CSS!"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment