I am currently making my way through Swirl, and I seem to be stuck on this part. As you can see, it doesn't accept (what I think is) the right answer, and when I try to skip it just takes me out of Swirl. Not sure what the problem is here, should I just uninstall and reinstall?
| Use dir.create() to create a directory in the current working directory called
| "testdir".
> "testdir"
[1] "testdir"
| Not quite! Try again. Or, type info() for more options.
| Type dir.create("testdir") to create a directory in the current working
| directory called "testdir".
> dir.create("testdir")
Error in dir.create("testdir") : unused argument ("testdir")
> dir.create(testdir)
Error in dir.create(testdir) : unused argument (testdir)
> dir.create("test.dir")
Error in dir.create("test.dir") : unused argument ("test.dir")
> skip()
Error in dir.create("testdir") : unused argument ("testdir")
| Leaving swirl now. Type swirl() to resume.