dev/vala/hello/hello1.vala

10 lines
182 B
Vala
Raw Normal View History

2012-10-02 14:47:36 +04:00
using GLib;
public class Test.a.b.c.3d.HelloObject : GLib.Object
{
public static int main( string[] args )
{
stdout.printf( "Привет всем!\n" );
return 0;
}
}