Created
November 20, 2018 22:56
-
-
Save mounirlamouri/5b40a7a52b734c2554a6f4fd4eab9005 to your computer and use it in GitHub Desktop.
Rationale Web IDL
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
```idl | |
[Constructor(optional long numerator = 1, optional long denominator = 1)] | |
interface Rationale { | |
attribute long numerator; | |
attribute long denominator; | |
}; | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment