Basic
Basic
Document
GitHub
Install Basic Windows MVP 1.01
Install Basic Linux/Mac MVP 1.01
/// This is a sample code written in basic
display
(
"Hello World"
)
user
=
get
(
"Enter your Name"
)
display
(
'Hello
{user}
how are you ?'
)
number
=
1 + 1
assume
(number
== 2
)
{
display
(
'yes 1+1 is
{number}
'
)
}
unless
{
display
(
'no 1+1 is not
{number}
'
)
}