mirror of
https://github.com/PashaBibko/LX.git
synced 2026-04-03 17:39:02 +00:00
17 lines
348 B
C#
17 lines
348 B
C#
using System;
|
|
|
|
namespace LX_Build
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
// Initalises the CPP interface //
|
|
LX_API.Init();
|
|
|
|
// Generates LLVM IR with the example files //
|
|
_ = LX_API.GenIR("example/main.lx", "example/main.ll", "example/log");
|
|
}
|
|
}
|
|
}
|