___ ______ ____ _ _ ___
/ \ \ / / ___| / ___| | ___ _ _ __| |/ _ \
/ _ \ \ /\ / /\___ \ | | | |/ _ \| | | |/ _` | (_) |
/ ___ \ V V / ___) | | |___| | (_) | |_| | (_| |\__, |
/_/ \_\_/\_/ |____/ \____|_|\___/ \__,_|\__,_| /_/
Hi there! Welcome to AWS Cloud9!
To get started, create some files, play with the terminal, or visit https://docs.aws.amazon.com/console/cloud9/ for our documentation.
Happy coding!
Integers --> no decimal places, its perfectly represented in memory Floats/Doubles -> decimal places, and its not perfectly represented in memory (due to Machine epsilon) Strings --> represent text information (like names, addresses, side chicks) Bools/Booleans --> represent logic (true or false), represented as a 1 or a 0 in memory.
How to install V Basics of Cloud9 Basic Makefile design How to print to console --> println("hello world") How to declare and use basic data_types How to write basic functions --> fn function_name(param_name param_type) return_type { } fn whats_up_girl(name string, school string, cell_number int) bool { }