Skip to content

Instantly share code, notes, and snippets.

@rgrannell1
Created May 30, 2013 17:12
Show Gist options
  • Save rgrannell1/5679515 to your computer and use it in GitHub Desktop.
Save rgrannell1/5679515 to your computer and use it in GitHub Desktop.
A forkbomb implemented in R for POSIX-compliant operating systems,
forkbomb <- function (...) {
# you probably shouldn't run this; your pc will crash
require (parallel)
parallel::mclapply(1:2, forkbomb, mc.cores = 2)
}
forkbomb()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment