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
| # Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org> | |
| # Contributor: Giovanni Scafora <[email protected]> | |
| # Contributor: Sarah Hay <[email protected]> | |
| # Contributor: Martin Sandsmark <[email protected]> | |
| pkgname=vlc | |
| _vlcver=3.0.6 | |
| # optional fixup version including hyphen | |
| _vlcfixupver= | |
| pkgver=${_vlcver}${_vlcfixupver//-/.r} |
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
| /// Tour of Dart | |
| /// A simple Mixin example about printer. | |
| class Paper { | |
| String sizeName = 'Paper'; | |
| // bool printable = false; | |
| // Paper(this.sizeName, this.printable); | |
| /// Here we don't care whether Paper can be printed, |
OlderNewer