Processing Forum
float total = 1.20;
PFont v;
void setup() {
size(1400, 700);
smooth ();
println(PFont.list());
v = createFont("Vijay Bold", 35);
textFont(v);
}
void draw() {
fill(0);
text("the price is £", ( 100), 100);
text(total, 300, 100);
delay(500);
}
void price() {
fill(0);