Skip to content

Instantly share code, notes, and snippets.

@mathfur
Created March 6, 2010 04:49
Show Gist options
  • Save mathfur/323502 to your computer and use it in GitHub Desktop.
Save mathfur/323502 to your computer and use it in GitHub Desktop.
void setup(){
size(300,300);
noLoop();
}
void draw(){
println("__START__");
String[] s = loadStrings("c:/usr/tmp/in");
PFont f = createFont(PFont.list()[0],20);
textFont(f);
text(s[0],10,10);
println("__END__");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment