First line of code


Steps :

  1. First write the command "world" to log in to the language interpreter
  2. Now write this line of code:
  3. طباعة( "أهلا بالعالم" )
    Terminal Output
    أهلا بالعالم
  4. Result: أهلا بالعالم.

    If you set the language mode to English:
  5. print( "Hello world" )
    Terminal Output
    Hello world
  6. Result: Hello world.

    The underlying structure follows the function parameter pattern:
  7. function_name( "parameter" )

Run the program :

  1. To execute a saved file, use the built-in "world" runner function:
  2. world( "Filename.world" )
    Terminal Output
    Executing Filename.world...
    [Process completed with exit code 0]


⬅ Prev
Next ➡