Functions in Dart

Functions in Dart are very similar to function definitions in most C style languages. In addition to the main function, you can create your own function. To define a function, you will need to define a return type, a function name, and a parameter list. Now a function in Dart is a form of an…

Basic Variables in Dart

Dart has some basic variables types that are available for you to use. Inferred Definitions Dart doesn’t require you to define the data type when you define a variable. You can use the var keyword and Dart will infer the data type based upon what it sees. Implicit Definitions Likewise, you can define the data…

Do I need a good ACT/SAT score to get in and do well at college?

What happens if i don’t have good SAT or ACT scores? Is that going to prevent me from doing well in Computer Science (or college in general) or even getting into college? Well the answer is a little complicated and added to because of the recent pandemic. For many many years the SAT or ACT…

Installing Flutter to use with Visual Studio Code

Flutter is actually a SDK/framework on top of the Dart programming language. To install Flutter with Visual Studio Code you will have to perform several tasks which we will layout here. I have chosen Visual Studio Code (VSC) because both are supported on multiple platforms, don’t require huge amounts of resources to run, and are…