// See https://aka.ms/new-console-template for more information
|
|
|
|
using Gtk;
|
|
|
|
class Program {
|
|
|
|
static void Main(string[] args){
|
|
Application.Init();
|
|
var window = new Window("My TEst");
|
|
window.SetDefaultSize(320,240);
|
|
window.DeleteEvent += (o,e) => Application.Quit();
|
|
Connsole.WriteLine(http_get("https://devrant.com/feed/recent"));
|
|
window.ShowAll();
|
|
Application.Run();
|
|
|
|
}
|
|
}
|
|
|