public class PassbyRefOne {
    int a = 10;
    void addTen(PassbyRefOne num){
        num.a = num.a + 10;
    }
    public static void main(String[] args) {
        PassbyRefOne x = new PassbyRefOne();
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | __pycache__ | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/env -S sbcl --script | |
| (let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp" | |
| (user-homedir-pathname)))) | |
| (when (probe-file quicklisp-init) | |
| (load quicklisp-init))) | |
| (defun main () | |
| (let ((counter 0)) | |
| (loop | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | use std::io::{self, Write}; | |
| use std::time::{Instant, Duration}; | |
| use std::thread; | |
| fn main() { | |
| let time: Instant = Instant::now(); | |
| let text: &str = "Marhaban ya Ramadhan"; | |
| let mut is_up: bool = true; | |
| let mut current_index: usize = 0; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <html> | |
| <head><title>404 Not Found</title></head> | |
| <body> | |
| <center><h1>404 Not Found</h1></center> | |
| <hr><center>Quarkus</center> | |
| </body> | |
| </html> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | From e8bbace06f13e4d519396d604b93432a845a3bd8 Mon Sep 17 00:00:00 2001 | |
| From: Muhammad Aviv Burhanudin <muhamadaviv14@gmail.com> | |
| Date: Mon, 6 Mar 2023 22:16:55 +0700 | |
| Subject: [PATCH] fix connection | |
| Signed-off-by: Muhammad Aviv Burhanudin <muhamadaviv14@gmail.com> | |
| --- | |
| rest-json-quickstart/pom.xml | 8 ++++++++ | |
| rest-json-quickstart/src/main/java/Product.java | 3 +++ | |
| rest-json-quickstart/src/main/java/ProductResource.java | 5 +---- | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import System.Console.GetOpt | |
| import System.Environment | |
| data Options = Options | |
| { optVerbose :: Bool | |
| , optInputFile :: Maybe FilePath | |
| , optOutputFile :: Maybe FilePath | |
| } deriving (Show) | |
| defaultOptions :: Options | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #include <stdio.h> | |
| #include <curl/curl.h> | |
| #define TO 100 | |
| #define URL "https://google.com" | |
| int | |
| main() | |
| { | |
| for(size_t i = 0;i < TO;i++) | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | require "http/client" | |
| require "json" | |
| url = "https://quranapi.idn.sch.id/surah/" | |
| target = 114 | |
| print "{" | |
| target.times do | x | | |
| request = HTTP::Client.get(url + (x+1).to_s) | |
| response = JSON.parse(request.body)["numberOfAyahs"] | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.Scanner; | |
| import java.util.function.Function; | |
| public class Factorialf | |
| { | |
| // Declare the factorialFn variable outside the factorial method | |
| static Function<Integer, Integer> factorialFn = new Function<Integer, Integer>() { | |
| @Override | |
| public Integer apply(Integer x) { | |
| if (x == 0) { | 
NewerOlder