// Hello, Friends — first Engram program // Written for Beth, Tim, and Matt on April 28, 2026. // This is what it looks like to write in a language // that runs inside an intelligent system. fn greet(name: String) -> String { return "Hello, " + name + ". Good to have you here." } fn main() -> Void { let friends = ["Beth", "Tim", "Matt"] for friend in friends { let message = greet(friend) print(message) } print("") print("Engram is the language of the engine room.") print("You are standing at the edge of something real.") }