﻿WrapLog(3)
WrapLog("hello")
WrapLog(true)
WrapLog(true and null)

// Test currying the execution context.
Map(Range(5), Wrap(it * 3)) // No currying needed
Map(Range(5), WrapLog(it * 3)) // Currying needed
