LangStudies/Builds/Tests/5.VariableDeclaration.letter
Ed94 0acd6ecbaf BAPFS Lecture 18
Instead of making a cli I made updates the gui to open any file.
2022-07-14 01:55:31 -04:00

14 lines
150 B
Plaintext

// Declaration
let x;
// Single assignment declaration
let y = 42;
// Multiple declarations
let a, b;
let c, d = 10;
let foo = bar = 10;
r = 10;