Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
import org.scalacheck.Prop.forAll | |
import org.scalacheck.Properties | |
object ShakespeareSpec extends Properties("Bubble") { | |
def spell(words: List[String], mysticNumber: Int) = | |
mysticNumber.toString + | |
words.mkString + "toil" + "trouble" | |
property("bubble") = forAll { (a: List[String], b: Int) => |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000