Created
July 23, 2016 14:10
-
-
Save moreati/5f747e1044cc14665792c819f4c7108f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
%TAG ! tag:nuxi.nl,2015:cloudabi/ | |
--- | |
stderr: !fd stderr | |
path: !file | |
path: _obj/install/x86_64-unknown-cloudabi/python/lib/python3.6 | |
nousersite: true | |
nosite: true | |
command: >- | |
import sys; | |
print("Hello {}, from CloudABI!".format("World!"), file=sys.stderr); |
This file contains hidden or 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
%TAG ! tag:nuxi.nl,2015:cloudabi/ | |
--- | |
stderr: !fd stderr | |
path: !file | |
path: _obj/install/x86_64-unknown-cloudabi/python/lib/python3.6 | |
nousersite: true | |
nosite: true | |
command: >- | |
import resource; | |
import sys; | |
max(x*x for x in range(100000000)); | |
print(resource.getrusage(resource.RUSAGE_SELF), file=sys.stderr); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment