-
Notifications
You must be signed in to change notification settings - Fork 0
Syntax
Spotandjake edited this page Jul 8, 2021
·
1 revision
- Module Linking
import
from
export
- Primitive Types
Boolean
Number
String
Function
Void
- Decelerators
let
- General
return
let identifier: type = value;
let _true: Boolean = true;
let _false: Boolean = false;
let _number: Number = 1;
let _string: String = 'define string';
let _function: Function = (x: Number, y: Number): Number => {
return(x);
};
// this is a comment
import add from 'add.br';
export add;