Skip to content

Commit

Permalink
fix: remove string as source in Program
Browse files Browse the repository at this point in the history
  • Loading branch information
denispionicul committed Jan 12, 2025
1 parent 210bb76 commit 537fccc
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions RobloxCS/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,7 @@ public static class Program
{
public static void Main(string[] args)
{
var source = """
using System.Collections.Generic;
var m = new List<int>();
var e = m.FindLast((a) => a + 1);
""".Trim();//File.ReadAllText(args[0]).Trim();
var source = File.ReadAllText(args[0]).Trim();

Console.WriteLine(Transpiler.Transpile(source));
}
Expand Down

0 comments on commit 537fccc

Please sign in to comment.