Skip to content

Instantly share code, notes, and snippets.

@psugihara
Last active August 29, 2015 14:27
Show Gist options
  • Save psugihara/e550a8a49fec5a3cfa0e to your computer and use it in GitHub Desktop.
Save psugihara/e550a8a49fec5a3cfa0e to your computer and use it in GitHub Desktop.
import arb.soundcipher.*;
int N = 2; // N = average North wind direction
if (N == 1) {
line(9, 10, 11, 12);
SoundCipher sc = new SoundCipher(this);
sc.repeat(3);
sc.playNote(60, 100, 0.5);
} else if (N == 2) {
// do something else
}
@adubspea
Copy link

what does == mean?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment