This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=== function max(a, b) === | |
{ | |
- a >= b: | |
~ return a | |
- else: | |
~ return b | |
} | |
=== function min(a, b) === | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Format: Title / Artist (Duet # - the number used at the Duet karaoke chain in NYC) | |
=== Uptempo === | |
1985 / Bowling for Soup (Duet #70852) | |
About a Girl / The Academy Is... (Duet #75072) | |
Accidentally in Love / Counting Crows (Duet #22262) | |
According to You / Orianthi (Duet #25889) | |
All Star / Smash Mouth (Duet #20212) | |
All The Things She Said / t.A.T.u. (Duet #21517) | |
Anthem / Good Charlotte (Duet #21529) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
load(":label.bzl", "label_printer") | |
label_printer( | |
name = "direct", | |
label = ":target", | |
) | |
label_printer( | |
name = "through_alias", | |
label = ":alias", |