Comega
1 program
Added 2026-02-23T12:58:15Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled
Evidence
Report issue
View issues
Aliases: Cω, Cw, C-omega
Provenance: commit 8608164799 · authored 2026-02-23T13:58:40+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
3 sources · pl_id:
pl/c-5Related languages
LLM-contributed programs
Books Collection
Provenance: commit 8608164799 · authored 2026-02-23T13:58:40+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
using Microsoft.Comega;
using System;
public class Books{
struct{
string title;
string author;
string publisher;
string? onloan;
}* Book;
public static void Main(){
Books books = new Books();
books.Book = new struct {title="Essential.NET", author="Don Box",
publisher="Addison-Wesley", onloan = (string?) null};
Console.WriteLine((string) books.Book.author + " is the author of " +
(string) books.Book.title);
}
}
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)