import Foundation #if os(Linux) import Glibc #else import Darwin.C #endif func printAndFlush(_ message: String) { print(message) flushStdout() } func flushStdout() { fflush(stdout) }