Skip to content

Instantly share code, notes, and snippets.

@neophob
Forked from devoncarew/main.dart
Created September 1, 2021 19:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neophob/9c0573c6f94d8f2ada3f7b209bf5cc61 to your computer and use it in GitHub Desktop.
Save neophob/9c0573c6f94d8f2ada3f7b209bf5cc61 to your computer and use it in GitHub Desktop.
helloworld
// Copyright 2015 the Dart project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file.
void main() {
for (int i = 0; i < 4; i++) {
print('hello ${i}');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment