diff options
author | Ondřej Surý <ondrej@sury.org> | 2011-09-13 13:13:40 +0200 |
---|---|---|
committer | Ondřej Surý <ondrej@sury.org> | 2011-09-13 13:13:40 +0200 |
commit | 5ff4c17907d5b19510a62e08fd8d3b11e62b431d (patch) | |
tree | c0650497e988f47be9c6f2324fa692a52dea82e1 /doc/playground.html | |
parent | 80f18fc933cf3f3e829c5455a1023d69f7b86e52 (diff) | |
download | golang-upstream/60.tar.gz |
Imported Upstream version 60upstream/60
Diffstat (limited to 'doc/playground.html')
-rw-r--r-- | doc/playground.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/playground.html b/doc/playground.html new file mode 100644 index 000000000..01d3adc9c --- /dev/null +++ b/doc/playground.html @@ -0,0 +1,27 @@ +<!-- About the Go Playground --> + +<div class="left-column"> +<p> +The Go Playground is a web service that runs on +<a href="http://golang.org/">golang.org</a>'s servers. +The service receives a Go program, compiles, links, and runs the program inside +a sandbox, then returns the output. +</p> + +<p> +There are limitations to the programs that can be run in the Playground. +They must be single-threaded (but they may use many goroutines). +There are also limits on execution time, and CPU and memory usage. +The Playground can access only a subset of the standard library +(notably absent are network and file system access). +Therefore, the only communication a Playground program has to the outside world +is via standard output. +</div> + +<div class="right-column"> +<script src="http://www.google.com/jsapi" type="text/javascript"></script> +<div id="playground" class="small"></div> +<script src="/doc/play/playground.js"></script> +</div> + +<div class="end-columns"></div> |