Skip to content

Instantly share code, notes, and snippets.

@livewing
Created October 30, 2015 01:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save livewing/e081c60609c851bb5497 to your computer and use it in GitHub Desktop.
Save livewing/e081c60609c851bb5497 to your computer and use it in GitHub Desktop.
1.5GB分の"Hello, world!"を出力するスクリプト
i = 0
s = "Hello, world!\n"
while i < (1024 * 1024 * 1024 * 1.5)
print s
i += s.length
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment