This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <gtk/gtk.h> | |
#include <vte/vte.h> | |
GtkWidget* create_window() { | |
GtkWidget* window = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
gtk_window_set_default_size(GTK_WINDOW(window), 600, 400); | |
g_signal_connect(window, "destroy", gtk_main_quit, NULL); | |
return window; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// valac test.vala --pkg vte-2.90 --pkg gtk+-3.0 | |
public class App { | |
Gtk.Window _window; | |
Vte.Terminal _terminal; | |
public App(string[] args) { | |
Gtk.init(ref args); | |
_window = new Gtk.Window(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Person { | |
private string _name; | |
private int _age; | |
public Person(string name, int age) { | |
_name = name; | |
_age = age; | |
} | |
public Person.from_gendered_person(GenderedPerson gp) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public bool string_compare(string a, string b) { | |
return a == b; | |
} | |
public bool template_compare<T>(T a, T b) { | |
return a == b; | |
} | |
public string bool_to_str(bool val) { | |
return val ? "true" : "false"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"strconv" | |
"testing" | |
) | |
type Int int |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"math" | |
"os" | |
) | |
const ( | |
Width = 1280 |