Skip to content
This repository has been archived by the owner on Jan 3, 2022. It is now read-only.

Latest commit

 

History

History
27 lines (20 loc) · 463 Bytes

Input&output.md

File metadata and controls

27 lines (20 loc) · 463 Bytes

Input & Output

Print values

You can print everything with just passing it to the print function:

print("Hello World") # String
print(1 + 1) # Integer
print(1.2) # Float
print(true) # Boolean
print('$') # Character

Read values from user

You can read any type of values from user with one of this functions:

  • ReadStr
  • ReadInt
  • ReadFloat
  • ReadChar

This is an example for ReadInt function:

var x = ReadInt()