Skip to content

Basic Input & Output

EasyLang supports clean and intuitive input/output operations.


Printing Output

so print "Enter your name:"

Reading Input

so print "Whats ur name?"
read name
so print name

Variable

we let x = 10
so print "Value of x is " plus x

Output:

Value of x is 10


Summary

  • read <var> takes values
  • so print <var> prints values
  • Strings can be combined using plus