textDraw
main.c (478B)
1 #! /usr/bin/env sheepy
2 /* or direct path to sheepy: #! /usr/local/bin/sheepy */
3
4 /* Libsheepy documentation: http://spartatek.se/libsheepy/ */
5 #include "libsheepyObject.h"
6 #include "short.h"
7
8 int argc; char **argv;
9
10 /* enable/disable logging */
11 /* #undef pLog */
12 /* #define pLog(...) */
13
14 int main(int ARGC, char** ARGV) {
15
16 argc = ARGC; argv = ARGV;
17
18 initLibsheepy(ARGV[0]);
19
20 createSmallDict(d);
21
22 $(&d, "wer");
23
24 i_("de");
25
26 lv(&d);
27
28 }
29 // vim: set expandtab ts=2 sw=2: