19 lines
447 B
C#
19 lines
447 B
C#
|
// See https://aka.ms/new-console-template for more information
|
|||
|
|
|||
|
using Gtk;
|
|||
|
|
|||
|
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(http_get("https://devrant.com/feed/recent"));
|
|||
|
window.ShowAll();
|
|||
|
Application.Run();
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
|