func _whisk_print_buffer()

in core/swift51Action/swiftbuild.py.launcher.swift [37:43]


func _whisk_print_buffer(jsonString: String){
    var buf : [UInt8] = Array(jsonString.utf8)
    buf.append(10)
    fflush(stdout)
    fflush(stderr)
    write(3, buf, buf.count)
}