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
| // Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file | |
| // for details. All rights reserved. Use of this source code is governed by a | |
| // BSD-style license that can be found in the LICENSE file. | |
| import 'package:flutter/material.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override |
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
| #! /bin/bash | |
| # ECHO COMMAND | |
| # echo Hello World! | |
| # VARIABLES | |
| # Uppercase by convention | |
| # Letters, numbers, underscores | |
| NAME="Bob" | |
| # echo "My name is $NAME" |
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
| <StyleCopSettings Version="105"> | |
| <GlobalSettings> | |
| <BooleanProperty Name="ViolationsAsErrors">True</BooleanProperty> | |
| </GlobalSettings> | |
| <Analyzers> | |
| <Analyzer AnalyzerId="StyleCop.CSharp.DocumentationRules"> | |
| <Rules> | |
| <Rule Name="ElementsMustBeDocumented"> | |
| <RuleSettings> | |
| <BooleanProperty Name="Enabled">False</BooleanProperty> |
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
| /** | |
| * @author jagu | |
| * @ | |
| */ | |
| /** ------------------------ | |
| Fields | |
| ------------------------**/ | |
| // Arguments passed into this controller can be accessed via the `$.args` object directly or: | |
| var args = $.args; |