Quick Start Guide
Follow this guide if you are _already_ familiar with Scala, SBT, etc.
import org.automanlang.adapters.mturk.DSL._implicit val mt = mturk (
access_key_id = "my key", // your MTurk "access key"
secret_access_key = "my secret", // your MTurk "secret key"
sandbox_mode = true // if true, run on MTurk sandbox
)def which_one() = radio(
budget = 5.00,
text = "Which one of these does not belong?",
options = (
"Oscar the Grouch",
"Kermit the Frog",
"Spongebob Squarepants",
"Cookie Monster",
"The Count"
)
)Cleanup of AutoMan Resources
Last updated