Section outline

    • Ace inline (tekstiredaktoriga)

      Python example

      print("Hello squares")
      for i in range(10):
          print(i, i ** 2)
      

      Java example

      public class hello {
          public static void main(String[] args) {
              System.out.println("Hello world!");
          }
      }
      

      Supported languages

      import urllib.request
      
      with urllib.request.urlopen("http://localhost/jobe/index.php/restapi/languages") as infile:
          print(infile.read().decode('utf8'))