firmware  v0.1.2
Chromation Spectrometer Dev-Kit
test-glib-install.c
1 #include <glib.h>
2 #include <stdbool.h>
3 #include <stdio.h>
4 
5 int main()
6 {
7  GString *msg = g_string_new("Congratulations! GLib is installed.");
8  puts(msg->str);
9  g_string_free(msg, true);
10  return 0;
11 }