Created
August 25, 2018 02:20
-
-
Save santiblanko/25a25bcbf94fbd594be7de16318babbf 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
print(' .:;S;:. .:;.;:. .: ;:. .:;.') | |
print('S S S / S S S S S S S S;;:') | |
print(':;S;: :;S;: :;S;: :;S;: :;S;: :: ') | |
counter = 0 | |
while (1 == 1) { | |
counter <- counter + 1 | |
Sys.sleep(3) | |
print(paste(sample(1:10, 1),'Kw/s generated in the last second.')) | |
e <-matrix(rnorm(6),2,3) | |
print(e) | |
if (counter == 1000) { | |
break | |
} | |
print(' .:;S;:. .:;.;:. .: ;:. .:;.') | |
print('S S S / S S S S S S S S;;:') | |
print(':;S;: :;S;: :;S;: :;S;: :;S;: :: ') | |
} | |
print('Finished . . ') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment