chore: remove all .history/DrApi_20241215* placeholder example source files

This commit is contained in:
2024-12-16 21:23:13 +00:00
commit b4dee95f23
230 changed files with 5558 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
// See https://aka.ms/new-console-template for more information
using Gtk;
partial class Program {
public static void Main(string[] args){
Application.Init();
var window = new Window("My TEst");
window.SetDefaultSize(320,240);
window.DeleteEvent += (o,e) => Application.Quit();
Console.WriteLine(devrant.get_rants("https://devrant.com/feed/recent"));
window.ShowAll();
Application.Run();
}
}