Created with <3 with dartpad.dev.
Last active
December 31, 2023 13:03
-
-
Save mohn93/1364f5d27c39da758540cd8d007df28f to your computer and use it in GitHub Desktop.
1.1 Hello World
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 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 (var 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