Skip to content

Instantly share code, notes, and snippets.

@mschmidt87
mschmidt87 / example.wppl
Created August 4, 2022 02:27
webppl example
var g0 = 'Hello, World!'
var g1 = 'Howdy, universe!'
var g2 = 'Oh no, not again!'
var greeting = function(sunny) {
return function() {
var greetingChoice = sunny ? flip(0.6) : flip(0.2)
var altAnswer = sunny ? g1 : g2
return greetingChoice ? g0 : altAnswer
}