File: hello.xp

package info (click to toggle)
epix 1.2.22-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,256 kB
  • sloc: cpp: 16,847; sh: 5,054; makefile: 159; lisp: 6
file content (20 lines) | stat: -rw-r--r-- 298 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* -*-ePiX-*- */
#include "epix.h"
using namespace ePiX;

int main()
{
  picture(P(-1,-1), P(1,1), "2x1in");

  begin();

  // uncomment and permute these lines
  // crop_ellipse();
  // backing(Cyan());
  border(Black(), "1pt");

  font_size("Huge");
  label(P(0,0), "Hello, world!");

  end();
}