Canon/Canon.Core/Compiler.cs
2024-03-09 20:11:27 +08:00

16 lines
294 B
C#

namespace Canon.Core;
public class Compiler
{
public string Compile(string _)
{
return """
#include <stdio.h>
int main()
{
printf("%d", 3);
return 0;
}
""";
}
}