Skip to content

Commit e862561

Browse files
committed
start curse
1 parent ea82867 commit e862561

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+27
-1637
lines changed

Dart/controle_fluxo.dart

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
main(List<String> args) {
2+
int x = 10;
3+
if(x >10){
4+
print("maior que 10");
5+
}
6+
else if(x == 10){
7+
print("igual a 10");
8+
}
9+
else{
10+
print("menor que 10");
11+
}
12+
}

Dart/tipos_primitivos.dart

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import 'dart:ffi';
2+
3+
main(List<String> args) {
4+
String balde;
5+
balde = "ceveja";
6+
print(balde);
7+
num idade = 20; //num constitui numeros inteiros e decimais
8+
int teste = 19;
9+
double preco = 39.6456;
10+
print("preço = ${preco.toStringAsPrecision(3)}");//exibe até a primeira casa decimal
11+
bool facul = true;//binário = true or false(1 or 0)
12+
if(facul){
13+
print("E a provinha?\n");
14+
}
15+
}

First_App/.gitignore

Lines changed: 0 additions & 37 deletions
This file was deleted.

First_App/.metadata

Lines changed: 0 additions & 10 deletions
This file was deleted.

First_App/README.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

First_App/android/.gitignore

Lines changed: 0 additions & 7 deletions
This file was deleted.

First_App/android/app/build.gradle

Lines changed: 0 additions & 67 deletions
This file was deleted.

First_App/android/app/src/debug/AndroidManifest.xml

Lines changed: 0 additions & 7 deletions
This file was deleted.

First_App/android/app/src/main/AndroidManifest.xml

Lines changed: 0 additions & 30 deletions
This file was deleted.

First_App/android/app/src/main/kotlin/com/example/First_App/MainActivity.kt

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)