├── content └── contribution │ ├── hello-world.ahk │ ├── hello-world.by │ ├── hello-world.cr │ ├── hello-world.fs │ ├── hello-world.lua │ ├── hello-world.rb │ ├── hello-world2.rb │ ├── hello-world.bash │ ├── hello-world.exs │ ├── hello-world.fsx │ ├── hello-world.jl │ ├── hello-world.lsp │ ├── hello-world.nb │ ├── hello-world.nim │ ├── hello-world.py │ ├── hello-world.zsh │ ├── hello-world2.py │ ├── hello-world3.php │ ├── hello-world4.py │ ├── hello-world.groovy │ ├── hello-world.js │ ├── hello-world.ml │ ├── hello-world.ts │ ├── hello-world4.php │ ├── hello-world.cmd │ ├── hello-world.php │ ├── hello-world.r │ ├── hello-world3.js │ ├── hello-world.bat │ ├── hello-world.mojo │ ├── hello-world.ps1 │ ├── hello-world.sh │ ├── hello-world.st │ ├── hello-world2.js │ ├── hello-world2.php │ ├── hello-world.rkt │ ├── hello-world.fish │ ├── hello-world.hrl │ ├── hello-world.kt │ ├── hello-world.scala │ ├── hello-world.v │ ├── hello-world2.kt │ ├── hello-world3.py │ ├── hello-world4.rs │ ├── hello-world.bhai │ ├── hello-world.dart │ ├── hello-world.hs │ ├── hello-world.lol │ ├── hello-world.rs │ ├── hello-world.vala │ ├── hello-world2.hs │ ├── hello-world3.rs │ ├── hello-world5.rs │ ├── hello-world6.rs │ ├── hello-world.mjs │ ├── hello-world3.pas │ ├── hello-world.gd │ ├── hello-world2.fs │ ├── hello-world.carbon │ ├── hello-world.f90 │ ├── hello-world.pas │ ├── hello-world2.pas │ ├── hello-world.mal │ ├── hello-world5.c │ ├── hello-world6.c │ ├── hello-world.erl │ ├── hello-world.purs │ ├── hello-world3.kt │ ├── hello-world4.c │ ├── hello-world.cpp │ ├── hello-world2.c │ ├── hello-world2.go │ ├── hello-world6.cpp │ ├── hello-world.astro │ ├── hello-world.go │ ├── hello-world.swift │ ├── hello-world.zig │ ├── hello-world.adb │ ├── hello-world.malbolge │ ├── hello-world2.zig │ ├── hello-world.mod │ ├── hello-world2.rs │ ├── hello-world3.cpp │ ├── hello-world.dylan │ ├── hello-world.sql │ ├── hello-world.svelte │ ├── hello-world5.cpp │ ├── hello-world3.c │ ├── hello-world4.cpp │ ├── hello-world.pl │ ├── hello-world.clj │ ├── hello-world.cs │ ├── hello-world2.java │ ├── hello-world4.java │ ├── hello-world9.cpp │ ├── hello-world.java │ ├── hello-world6.java │ ├── hello-world.bf │ ├── hello-world.c │ ├── hello-world2.cob │ ├── hello-world3.go │ ├── hello-world2.cs │ ├── hello-world3.cs │ ├── hello-world2.erl │ ├── hello-world3.rb │ ├── hello-world3.java │ ├── hello-world.vue │ ├── hello-world.f95 │ ├── hello-world7.java │ ├── hello-world2.adb │ ├── hello-world.asm │ ├── hello-world.jsx │ ├── hello-world.h │ ├── hello-world.sol │ ├── hello-world2.tsx │ ├── hello-world5.java │ ├── hello-world.cob │ ├── hello-world7.cpp │ ├── hello-world.html │ ├── hello-world8.cpp │ ├── hello-world.ino │ ├── hello-world2.sass │ ├── hello-world.htmx │ ├── hello-world2.bf │ ├── hello-world.s │ └── hello-world.ook ├── .github └── logo.png ├── assets └── images │ └── logo.png ├── Faqs.md ├── README.md └── CONTRIBUTING.md /content/contribution/hello-world.ahk: -------------------------------------------------------------------------------- 1 | MsgBox, Hello, World! -------------------------------------------------------------------------------- /content/contribution/hello-world.by: -------------------------------------------------------------------------------- 1 | print("Hello World") -------------------------------------------------------------------------------- /content/contribution/hello-world.cr: -------------------------------------------------------------------------------- 1 | puts "Hello, World!" -------------------------------------------------------------------------------- /content/contribution/hello-world.fs: -------------------------------------------------------------------------------- 1 | .(" Hello, World!") -------------------------------------------------------------------------------- /content/contribution/hello-world.lua: -------------------------------------------------------------------------------- 1 | print("Hello, World!") -------------------------------------------------------------------------------- /content/contribution/hello-world.rb: -------------------------------------------------------------------------------- 1 | puts "Hello, World!" -------------------------------------------------------------------------------- /content/contribution/hello-world2.rb: -------------------------------------------------------------------------------- 1 | puts 'Hello, world!' -------------------------------------------------------------------------------- /content/contribution/hello-world.bash: -------------------------------------------------------------------------------- 1 | echo "Hello, World!" 2 | -------------------------------------------------------------------------------- /content/contribution/hello-world.exs: -------------------------------------------------------------------------------- 1 | IO.puts "Hello, World!" -------------------------------------------------------------------------------- /content/contribution/hello-world.fsx: -------------------------------------------------------------------------------- 1 | printfn "Hello, World!" -------------------------------------------------------------------------------- /content/contribution/hello-world.jl: -------------------------------------------------------------------------------- 1 | println("Hello, World!") -------------------------------------------------------------------------------- /content/contribution/hello-world.lsp: -------------------------------------------------------------------------------- 1 | (write-line "Hello World") -------------------------------------------------------------------------------- /content/contribution/hello-world.nb: -------------------------------------------------------------------------------- 1 | Print["Hello World!"] 2 | -------------------------------------------------------------------------------- /content/contribution/hello-world.nim: -------------------------------------------------------------------------------- 1 | echo "Hello, World!" 2 | -------------------------------------------------------------------------------- /content/contribution/hello-world.py: -------------------------------------------------------------------------------- 1 | print('Hello World') 2 | -------------------------------------------------------------------------------- /content/contribution/hello-world.zsh: -------------------------------------------------------------------------------- 1 | echo "Hello, World!" 2 | -------------------------------------------------------------------------------- /content/contribution/hello-world2.py: -------------------------------------------------------------------------------- 1 | print("Hello World") 2 | -------------------------------------------------------------------------------- /content/contribution/hello-world3.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /content/contribution/hello-world4.py: -------------------------------------------------------------------------------- 1 | print("Hello World") 2 | -------------------------------------------------------------------------------- /content/contribution/hello-world.groovy: -------------------------------------------------------------------------------- 1 | println "Hello, World!" 2 | -------------------------------------------------------------------------------- /content/contribution/hello-world.js: -------------------------------------------------------------------------------- 1 | console.log("Hello World"); 2 | -------------------------------------------------------------------------------- /content/contribution/hello-world.ml: -------------------------------------------------------------------------------- 1 | print_endline "Hello, World!" -------------------------------------------------------------------------------- /content/contribution/hello-world.ts: -------------------------------------------------------------------------------- 1 | console.log("Hello World"); 2 | -------------------------------------------------------------------------------- /content/contribution/hello-world4.php: -------------------------------------------------------------------------------- 1 | print("Hello, World!"); 2 | -------------------------------------------------------------------------------- /content/contribution/hello-world.cmd: -------------------------------------------------------------------------------- 1 | echo Hello, World! 2 | pause 3 | -------------------------------------------------------------------------------- /content/contribution/hello-world.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/contribution/hello-world.r: -------------------------------------------------------------------------------- 1 | X <- "Hello World" 2 | print(X) 3 | -------------------------------------------------------------------------------- /content/contribution/hello-world3.js: -------------------------------------------------------------------------------- 1 | console.log("Hello, World!"); 2 | -------------------------------------------------------------------------------- /content/contribution/hello-world.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | echo Hello, World! 3 | pause -------------------------------------------------------------------------------- /content/contribution/hello-world.mojo: -------------------------------------------------------------------------------- 1 | fn main(): 2 | print("Hello, world!") -------------------------------------------------------------------------------- /content/contribution/hello-world.ps1: -------------------------------------------------------------------------------- 1 | Write-Host "Hello, World! I'm Riya" 2 | -------------------------------------------------------------------------------- /content/contribution/hello-world.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Hello World" 3 | -------------------------------------------------------------------------------- /content/contribution/hello-world.st: -------------------------------------------------------------------------------- 1 | Transcript show: 'Hello, World!'; flush. -------------------------------------------------------------------------------- /content/contribution/hello-world2.js: -------------------------------------------------------------------------------- 1 | process.stdout.write("Hello World\n") 2 | -------------------------------------------------------------------------------- /content/contribution/hello-world2.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/contribution/hello-world.rkt: -------------------------------------------------------------------------------- 1 | #lang racket/base 2 | (display "Hello, World!") -------------------------------------------------------------------------------- /content/contribution/hello-world.fish: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env fish 2 | echo "Hello World" 3 | -------------------------------------------------------------------------------- /content/contribution/hello-world.hrl: -------------------------------------------------------------------------------- 1 | main :: IO () 2 | main = putStrLn "Hello, World!" -------------------------------------------------------------------------------- /content/contribution/hello-world.kt: -------------------------------------------------------------------------------- 1 | fun main() { 2 | println("Hello, world!!!") 3 | } -------------------------------------------------------------------------------- /content/contribution/hello-world.scala: -------------------------------------------------------------------------------- 1 | @main def hello() = println("Hello, World!") 2 | -------------------------------------------------------------------------------- /content/contribution/hello-world.v: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println('Hello, World!') 3 | } -------------------------------------------------------------------------------- /content/contribution/hello-world2.kt: -------------------------------------------------------------------------------- 1 | fun main(){ 2 | println("hello world") 3 | } 4 | -------------------------------------------------------------------------------- /content/contribution/hello-world3.py: -------------------------------------------------------------------------------- 1 | # Prints Hello World 2 | 3 | print("Hello World") -------------------------------------------------------------------------------- /content/contribution/hello-world4.rs: -------------------------------------------------------------------------------- 1 | fun main(){ 2 | println("Hello World!"); 3 | } -------------------------------------------------------------------------------- /.github/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ridholess/Halo-Dunia24/HEAD/.github/logo.png -------------------------------------------------------------------------------- /content/contribution/hello-world.bhai: -------------------------------------------------------------------------------- 1 | hi bhai 2 | bol bhai "Hello World"; 3 | bye bhai 4 | -------------------------------------------------------------------------------- /content/contribution/hello-world.dart: -------------------------------------------------------------------------------- 1 | void main() { 2 | print("Hello, World!"); 3 | } 4 | -------------------------------------------------------------------------------- /content/contribution/hello-world.hs: -------------------------------------------------------------------------------- 1 | main :: IO () 2 | main = putStrLn "Hello, World!" 3 | -------------------------------------------------------------------------------- /content/contribution/hello-world.lol: -------------------------------------------------------------------------------- 1 | HAI 1.2 2 | VISIBLE "HELLO, WORLD!" 3 | KTHXBYE 4 | -------------------------------------------------------------------------------- /content/contribution/hello-world.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello World!"); 3 | } 4 | -------------------------------------------------------------------------------- /content/contribution/hello-world.vala: -------------------------------------------------------------------------------- 1 | void main () { 2 | print ("hello, world\n"); 3 | } -------------------------------------------------------------------------------- /content/contribution/hello-world2.hs: -------------------------------------------------------------------------------- 1 | main :: IO () 2 | main = putStrLn "Hello, World!" 3 | -------------------------------------------------------------------------------- /content/contribution/hello-world3.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello World!"); 3 | } 4 | -------------------------------------------------------------------------------- /content/contribution/hello-world5.rs: -------------------------------------------------------------------------------- 1 | fun main(){ 2 | println("Hello World"); 3 | } 4 | -------------------------------------------------------------------------------- /content/contribution/hello-world6.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ridholess/Halo-Dunia24/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /content/contribution/hello-world.mjs: -------------------------------------------------------------------------------- 1 | const print = x => console.log(x); 2 | print("Hello, world"); 3 | -------------------------------------------------------------------------------- /content/contribution/hello-world3.pas: -------------------------------------------------------------------------------- 1 | program Hello; 2 | begin 3 | writeln ('Hello World') 4 | end. 5 | -------------------------------------------------------------------------------- /content/contribution/hello-world.gd: -------------------------------------------------------------------------------- 1 | extends Node 2 | 3 | func _ready() -> void: 4 | print("Hello World") 5 | -------------------------------------------------------------------------------- /content/contribution/hello-world2.fs: -------------------------------------------------------------------------------- 1 | // hello_world.fs 2 | // for .NET websites 3 | printfn "Hello, World!" 4 | -------------------------------------------------------------------------------- /content/contribution/hello-world.carbon: -------------------------------------------------------------------------------- 1 | use std.io; 2 | 3 | fn main() { 4 | println("Hello, World!"); 5 | } 6 | -------------------------------------------------------------------------------- /content/contribution/hello-world.f90: -------------------------------------------------------------------------------- 1 | program hello_world 2 | print *, 'Hello, World!' 3 | end program hello_world -------------------------------------------------------------------------------- /content/contribution/hello-world.pas: -------------------------------------------------------------------------------- 1 | program HelloWorld; 2 | 3 | begin 4 | writeln('Hello, world!'); 5 | end. 6 | -------------------------------------------------------------------------------- /content/contribution/hello-world2.pas: -------------------------------------------------------------------------------- 1 | program HelloWorld; 2 | 3 | begin 4 | write('Hello, world!'); 5 | end. 6 | -------------------------------------------------------------------------------- /content/contribution/hello-world.mal: -------------------------------------------------------------------------------- 1 | (=<`#9]~6ZY32Vx5R1U,!/p<;ol.{*)K&%[email protected]:wvutsr 2 | #hello world in malboge 3 | -------------------------------------------------------------------------------- /content/contribution/hello-world5.c: -------------------------------------------------------------------------------- 1 | #include 2 | int main(){ 3 | printf("hello world"); 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /content/contribution/hello-world6.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(){ 4 | printf("Hello world"); 5 | return 0; 6 | } -------------------------------------------------------------------------------- /content/contribution/hello-world.erl: -------------------------------------------------------------------------------- 1 | -module(hello). 2 | -export([world/0]). 3 | 4 | world() -> 5 | io:format("Hello, World!~n"). 6 | -------------------------------------------------------------------------------- /content/contribution/hello-world.purs: -------------------------------------------------------------------------------- 1 | module Example where 2 | 3 | import Effect.Console (log) 4 | 5 | main = log "Hello, World!" 6 | -------------------------------------------------------------------------------- /content/contribution/hello-world3.kt: -------------------------------------------------------------------------------- 1 | #kotlin language 2 | 3 | fun main(args: Array) { 4 | println("Hello, World!") 5 | } 6 | -------------------------------------------------------------------------------- /content/contribution/hello-world4.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | puts("Hello, World!"); 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /content/contribution/hello-world.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | std::cout << "Hello World!\n"; 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /content/contribution/hello-world2.c: -------------------------------------------------------------------------------- 1 | #include "" 2 | 3 | int main() { 4 | printf("Hello, World!\n"); 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /content/contribution/hello-world2.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "fmt" 4 | 5 | func main() { 6 | fmt.Println("Hello, World!") 7 | } 8 | -------------------------------------------------------------------------------- /content/contribution/hello-world6.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | std::cout << "Hello World2!\n"; 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /content/contribution/hello-world.astro: -------------------------------------------------------------------------------- 1 | --- 2 | const greeting = 'Hello World'; 3 | --- 4 | 5 |
6 |

{greeting}

7 |
8 | -------------------------------------------------------------------------------- /content/contribution/hello-world.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "fmt" 5 | ) 6 | 7 | func main() { 8 | fmt.Println("Hello, World!") 9 | } -------------------------------------------------------------------------------- /content/contribution/hello-world.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | func helloWorld() { 4 | print("Hello, World!") 5 | } 6 | 7 | helloWorld() 8 | -------------------------------------------------------------------------------- /content/contribution/hello-world.zig: -------------------------------------------------------------------------------- 1 | const std = @import("std"); 2 | 3 | pub fn main() void { 4 | std.debug.print("Hello, World!\n", .{}); 5 | } -------------------------------------------------------------------------------- /content/contribution/hello-world.adb: -------------------------------------------------------------------------------- 1 | with Ada.Text_IO; use Ada.Text_IO; 2 | procedure Hello is 3 | begin 4 | Put_Line ("Hello, World!"); 5 | end Hello; -------------------------------------------------------------------------------- /content/contribution/hello-world.malbolge: -------------------------------------------------------------------------------- 1 | ('&%:9]!~}|z2Vxwv-,POqponl$Hjihf|B@@>,= 2 | 3 | int main() { 4 | std::cout << "Hello, World!" << std::endl; 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /content/contribution/hello-world.dylan: -------------------------------------------------------------------------------- 1 | module hello-world; 2 | 3 | export hello; 4 | 5 | define hello () := ( 6 | display("Hello, World!"); 7 | ); 8 | 9 | -------------------------------------------------------------------------------- /content/contribution/hello-world.sql: -------------------------------------------------------------------------------- 1 | -- hello_world.sql 2 | SET SERVEROUTPUT ON; 3 | 4 | BEGIN 5 | DBMS_OUTPUT.PUT_LINE('Hello, World!'); 6 | END; 7 | / 8 | -------------------------------------------------------------------------------- /content/contribution/hello-world.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 |

{greeting}

7 |
8 | -------------------------------------------------------------------------------- /content/contribution/hello-world5.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | std::cout << "Hello World1249" << std::endl; 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /content/contribution/hello-world3.c: -------------------------------------------------------------------------------- 1 | // Prints Hello World! 2 | 3 | #include 4 | 5 | int main() 6 | { 7 | printf("Hello world!"); 8 | return 0; 9 | } -------------------------------------------------------------------------------- /content/contribution/hello-world4.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | 4 | int main(){ 5 | cout << "Hello World!"; 6 | 7 | return 0; 8 | } 9 | -------------------------------------------------------------------------------- /content/contribution/hello-world.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | 3 | # Modules used 4 | use strict; 5 | use warnings; 6 | 7 | # Print function 8 | print("Hello World\n"); -------------------------------------------------------------------------------- /content/contribution/hello-world.clj: -------------------------------------------------------------------------------- 1 | ;Please use any online compiler to run this code 2 | 3 | (defn hello-world [] 4 | (println "Hello, World!")) 5 | 6 | (hello-world) 7 | -------------------------------------------------------------------------------- /content/contribution/hello-world.cs: -------------------------------------------------------------------------------- 1 | using system; 2 | 3 | class Program 4 | { 5 | static void Main() 6 | { 7 | Console.WriteLine("Hello World"); 8 | } 9 | } -------------------------------------------------------------------------------- /content/contribution/hello-world2.java: -------------------------------------------------------------------------------- 1 | public class HelloWorld{ 2 | public static void main(String[] args){ 3 | System.out.println("Hello World!"); 4 | } 5 | } -------------------------------------------------------------------------------- /content/contribution/hello-world4.java: -------------------------------------------------------------------------------- 1 | public class Main { 2 | public static void main(String[] args) { 3 | System.out.println("Hello, World!"); 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /content/contribution/hello-world9.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | int main() { 4 | cout << "Hello World everyone " << endl; 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /content/contribution/hello-world.java: -------------------------------------------------------------------------------- 1 | public class HelloWorld { 2 | public static void main(String[] args) { 3 | System.out.println("Hello, World!"); 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /content/contribution/hello-world6.java: -------------------------------------------------------------------------------- 1 | class Test 2 | { 3 | public static void main(String []args) 4 | { 5 | System.out.println("Hello World"); 6 | } 7 | }; 8 | -------------------------------------------------------------------------------- /content/contribution/hello-world.bf: -------------------------------------------------------------------------------- 1 | ++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>>.<<-.<.>>>+.>++.+++++++. 2 | # this is hello world in brainfuck coding language -------------------------------------------------------------------------------- /content/contribution/hello-world.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | // Print Hello, World! to the console 5 | printf("Hello, World!\n"); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /content/contribution/hello-world2.cob: -------------------------------------------------------------------------------- 1 | IDENTIFICATION DIVISION. 2 | PROGRAM-ID. HelloWorld. 3 | 4 | PROCEDURE DIVISION. 5 | DISPLAY "Hello, World! (Using COBOL)". 6 | STOP RUN. 7 | -------------------------------------------------------------------------------- /content/contribution/hello-world3.go: -------------------------------------------------------------------------------- 1 | 2 | package main 3 | 4 | import "fmt"; 5 | 6 | // Main function 7 | func main() { 8 | 9 | fmt.Println("!..... Hello World .....!") 10 | } 11 | -------------------------------------------------------------------------------- /content/contribution/hello-world2.cs: -------------------------------------------------------------------------------- 1 | public class Program 2 | { 3 | public static void Main(string[] args) 4 | { 5 | System.Console.WriteLine("Hello, World!"); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /content/contribution/hello-world3.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | class HelloWorld 4 | { 5 | static void Main() 6 | { 7 | Console.WriteLine("Hello, World!"); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /content/contribution/hello-world2.erl: -------------------------------------------------------------------------------- 1 | % The program in one of the efficient languages Erlang 2 | 3 | -module(hello). 4 | -export([main/0]). 5 | 6 | main() -> 7 | io:format("Hello, World!~n"). 8 | -------------------------------------------------------------------------------- /content/contribution/hello-world3.rb: -------------------------------------------------------------------------------- 1 | # hello-world.rb 2 | 3 | # Define a unique greeting 4 | unique_greeting = "🌟 Hello, World! 🌟" 5 | 6 | # Print the unique greeting 7 | puts unique_greeting 8 | -------------------------------------------------------------------------------- /content/contribution/hello-world3.java: -------------------------------------------------------------------------------- 1 | // Java code 2 | 3 | public class HelloWorld3 { 4 | public static void main(String[] args) { 5 | System.out.println("Hello world"); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /content/contribution/hello-world.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | -------------------------------------------------------------------------------- /content/contribution/hello-world.f95: -------------------------------------------------------------------------------- 1 | program hello_world 2 | call greet() 3 | contains 4 | subroutine greet() 5 | print *, 'Hello, World!' 6 | end subroutine greet 7 | end program hello_world 8 | -------------------------------------------------------------------------------- /content/contribution/hello-world7.java: -------------------------------------------------------------------------------- 1 | public class hello { 2 | public static void main(String[] args){ 3 | String greet="Hello ,World!"; 4 | System.out.println(greet); 5 | } 6 | 7 | } 8 | -------------------------------------------------------------------------------- /content/contribution/hello-world2.adb: -------------------------------------------------------------------------------- 1 | with Ada.Text_IO; 2 | use Ada.Text_IO; 3 | 4 | procedure hello_world is 5 | begin 6 | -- Print "Hello, World!" to the screen 7 | Put_Line ("Hello, World!"); 8 | end hello_world; 9 | -------------------------------------------------------------------------------- /content/contribution/hello-world.asm: -------------------------------------------------------------------------------- 1 | org 0x100 2 | 3 | 4 | mov dx, msg 5 | mov ah, 9 6 | int 0x21 7 | 8 | mov ah, 0x4c 9 | int 0x21 10 | 11 | msg db 'Hello World!', 0x0d, 0x0a, '$' 12 | -------------------------------------------------------------------------------- /content/contribution/hello-world.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | function HelloWorld() { 4 | return ( 5 |
6 |

Hello, World!

7 |
8 | ); 9 | } 10 | 11 | export default HelloWorld; -------------------------------------------------------------------------------- /content/contribution/hello-world.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | int main(int argc, const char * argv[]) { 4 | @autoreleasepool { 5 | NSLog(@"Hello, World! (Using Objective-C)"); 6 | } 7 | return 0; 8 | 9 | } 10 | -------------------------------------------------------------------------------- /content/contribution/hello-world.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | pragma solidity ^0.8.13; 3 | 4 | contract Hello 5 | { 6 | function show() public pure returns (string memory) 7 | { 8 | return "Hello World"; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /content/contribution/hello-world2.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | const HelloWorld: React.FC = () => { 4 | return ( 5 |
6 |

Hello, World!

7 |
8 | ); 9 | }; 10 | 11 | export default HelloWorld; -------------------------------------------------------------------------------- /content/contribution/hello-world5.java: -------------------------------------------------------------------------------- 1 | public class HelloWorld { 2 | public static void main(String[] args) { 3 | printMessage(); 4 | } 5 | 6 | public static void printMessage() { 7 | System.out.println("Hello, World!"); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /content/contribution/hello-world.cob: -------------------------------------------------------------------------------- 1 | identification division. 2 | program-id. hello-world. 3 | author. Zaenal Abidin. 4 | date-written. 03-10-2024. 5 | environment division. 6 | procedure division. 7 | display "Hello World!". 8 | stop run. -------------------------------------------------------------------------------- /content/contribution/hello-world7.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | 4 | int main(){ 5 | cout< 2 | 3 | 4 | 5 | 6 | Hello World in HTML 7 | 8 | 9 |

Hello World

10 | 11 | -------------------------------------------------------------------------------- /content/contribution/hello-world8.cpp: -------------------------------------------------------------------------------- 1 | // Unique way to output Hello World! 2 | 3 | #include 4 | 5 | int main() { 6 | for (char c : {72, 101, 108, 108, 111, 32, 87, 111, 114, 108, 100, 33}) { 7 | std::cout << c; 8 | } 9 | std::cout << std::endl; 10 | return 0; 11 | } 12 | 13 | //saurabh-23232 14 | -------------------------------------------------------------------------------- /content/contribution/hello-world.ino: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2; 4 | LiquidCrystal lcd(rs, en, d4, d5, d6, d7); 5 | 6 | void setup() { 7 | lcd.begin(16, 2); 8 | lcd.print("Hello World"); 9 | } 10 | 11 | void loop() { 12 | lcd.setCursor(0, 1); 13 | lcd.print(millis() / 1000); 14 | } 15 | 16 | -------------------------------------------------------------------------------- /content/contribution/hello-world2.sass: -------------------------------------------------------------------------------- 1 | $font-stack: Helvetica, sans-serif; 2 | $primary-color: #333; 3 | 4 | body { 5 | font: 100% $font-stack; 6 | color: $primary-color; 7 | } 8 | 9 | .hello-world { 10 | font-size: 2em; 11 | text-align: center; 12 | margin-top: 20%; 13 | } 14 | 15 | .hello-world::after { 16 | content: "Hello, world!"; 17 | } -------------------------------------------------------------------------------- /content/contribution/hello-world.htmx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Hello World with HTMX 7 | 8 | 9 | 10 |

Hello, World!

11 | 12 | -------------------------------------------------------------------------------- /Faqs.md: -------------------------------------------------------------------------------- 1 | 2 | #Frequently asked Questions 3 | 4 | - Who all can contribute? 5 | - Anyone with a github account and who is signed up for 6 | [hacktoberfest](https://hacktoberfest.digitalocean.com/) :) 7 | - How many pull request (PR) must be made, if I want to get an awesome tshirt from Hacktoberfest 2024? 8 | - 4 9 | - How do I track my progress to get an awesome shirt from Hacktoberfest 2024? 10 | - [go to :](https://hacktoberfest.digitalocean.com/profile/) (Check Out Your Own Stats at Right Top) 11 | - What is the duration of Hacktoberfest 2024? 12 | - It is from 1st october to 31st october 2024... 13 | - What is the event for? 14 | - For the open source community engagement and learn how to contribute to open source. 15 | 16 | ###### *We will do our best to merge as much as possible from everyone. However, time is limited and the merge conflicts are horrible :astonished: <3* -------------------------------------------------------------------------------- /content/contribution/hello-world2.bf: -------------------------------------------------------------------------------- 1 | //Brainfuck is an esoteric programming language known for its minimalism. Here's how you would print "Hello World!": 2 | 3 | ++++++++++[>+>+++>+++++++>++++++++++<<<<-]>>>++.>+.+++++++..+++.<<++.>+++++++++++++++.>.+++.------.--------.<<+.<. 4 | //How to Run the Code 5 | //Save the Code: 6 | 7 | //Create a new text file and save it with a .b or .bf extension (e.g., hello.bf). 8 | //Use a Brainfuck Interpreter: 9 | 10 | //You can run the Brainfuck code using an online interpreter or a local one. Here are some options: 11 | //Online Interpreter: Websites like TIO.run allow you to paste the code directly into the browser. 12 | //Local Interpreter: If you prefer to run it locally, you can install a Brainfuck interpreter. You can find various implementations in languages like Python, JavaScript, or C++. 13 | //Run the Code: 14 | 15 | //In an online interpreter, simply paste your code and hit "Run" or "Execute." 16 | -------------------------------------------------------------------------------- /content/contribution/hello-world.s: -------------------------------------------------------------------------------- 1 | .section __TEXT,__text,regular,pure_instructions 2 | .globl _start 3 | 4 | _start: 5 | sub sp, sp, #16 6 | 7 | mov w0, #'H' 8 | strb w0, [sp] 9 | mov w0, #'e' 10 | strb w0, [sp, #1] 11 | mov w0, #'l' 12 | strb w0, [sp, #2] 13 | mov w0, #'l' 14 | strb w0, [sp, #3] 15 | mov w0, #'o' 16 | strb w0, [sp, #4] 17 | mov w0, #' ' 18 | strb w0, [sp, #5] 19 | mov w0, #'W' 20 | strb w0, [sp, #6] 21 | mov w0, #'o' 22 | strb w0, [sp, #7] 23 | mov w0, #'r' 24 | strb w0, [sp, #8] 25 | mov w0, #'l' 26 | strb w0, [sp, #9] 27 | mov w0, #'d' 28 | strb w0, [sp, #10] 29 | mov w0, #'\n' 30 | strb w0, [sp, #11] 31 | 32 | // Prepare for syscall 33 | mov w0, #1 34 | add x1, sp, #0 35 | mov w2, #12 36 | 37 | // Syscall number for write 38 | movz x16, #0x2000, lsl #16 39 | movk x16, #0x0004 40 | svc #0 41 | 42 | // Exit syscall 43 | mov x0, #0 44 | movz x16, #0x2000, lsl #16 45 | movk x16, #0x0001 46 | svc #0 47 | 48 | //to run, save the file and run these following commands in terminal(using "HelloWorld" as an example for file name) 49 | //as -o HelloWorld.o HelloWorld.S 50 | //ld -macos_version_min 15.0.0 -o HelloWorld HelloWorld.o -lSystem -syslibroot `xcrun -sdk macosx --show-sdk-path` -e _start -arch arm64 51 | //./HelloWorld 52 | -------------------------------------------------------------------------------- /content/contribution/hello-world.ook: -------------------------------------------------------------------------------- 1 | Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook? Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook! Ook! Ook? Ook! Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook. Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook? Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook! Ook! Ook? Ook! Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook. Ook! Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook. Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook? Ook? Ook. Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook. Ook? Ook! Ook! Ook? Ook! Ook? Ook. Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook. Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook? Ook? Ook. Ook! Ook! Ook! Ook! Ook! Ook! Ook. Ook? Ook! Ook! Ook? Ook! Ook? Ook. Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook. Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook? Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook! Ook! Ook? Ook! Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook. Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook? Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook! Ook! Ook? Ook! Ook? Ook. Ook! Ook! Ook! Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook. Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook. Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Halo-Dunia `HacktoberFest 2024` Repositories ✨ 2 | 3 | ![HacktoberFest](https://github.com/newridho/Halo-Dunia24/raw/main/.github/logo.png) 4 | 5 | ## This Project Is Perfect For Your Pull Request 6 | 7 | 🗣 **Hacktoberfest 2024 encourages participation in the open-source community, which grows bigger every year.** 8 | 9 | 📢 **Register [here](https://hacktoberfest.com) for hacktoberfest2024 and make four pull requests (PRs) between October 1st-31st to grab free DIGITAL-SWAGS 🔥.** 10 | 11 | ## Contributing 12 | 13 | 🎉 We welcome contributions from everyone, regardless of your experience level. Here are some ways you can contribute: 14 | 15 | Do read the [Contribution Guidelines](/CONTRIBUTING.md) 16 | 17 | 📚 Add new file with other programming language 18 | 19 | 20 | ### FAQs 21 | 22 | If you have any questions, please check our [FAQs](Faqs.md) for answers. 23 | 24 | ## Our Amazing Contributors 25 | 26 | 27 | 28 | 29 | 30 |
31 |
32 |
33 | 34 |
35 | 36 | Hacktober Badge 37 | Star Badge 38 | Contributions 39 | 40 | Pull Requests Badge 41 | GitHub contributors 42 | 43 |
44 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution Rules📚: 2 | 3 | - Create files to display `hello world` with various programming languages 4 | - Look at other files before creating one,to avoid duplicate files 5 | - If you want to create a file, but there is already the same file 6 | - Just add a number to the end of the file name 7 | - e.g FROM `hello-world.py` to `hello-world2.py` 8 | - Do NOT remove other content. 9 | - Try to keep pull requests small to minimize merge conflicts 10 | 11 |
12 | 13 | ## FAQs 14 | If you have any questions, please check our [FAQs](Faqs.md) for answers. 15 | 16 | ## Getting Started ✨: 17 | 18 | - Fork this repo (button on top) 19 | - Clone on your local machine 20 | 21 | ```terminal 22 | git clone https://github.com/newridho/Halo-Dunia24.git 23 | ``` 24 | - Navigate to project directory. 25 | ```terminal 26 | cd Halo-Dunia24 27 | ``` 28 | 29 | - Create a new Branch 30 | 31 | ```markdown 32 | git checkout -b my-new-branch 33 | ``` 34 | - Make your changes `folderName/fileName` 35 | 36 | - Add your changes 37 | ```markdown 38 | git add . 39 | ``` 40 | - Commit your changes. 41 | 42 | ```markdown 43 | git commit -m "Relevant message" 44 | ``` 45 | - Then push 46 | ```markdown 47 | git push origin my-new-branch 48 | ``` 49 | 50 | 51 | - Create a new pull request from your forked repository 52 | 53 |
54 | 55 | ## Avoid Conflicts {Syncing your fork} 56 | 57 | An easy way to avoid conflicts is to add an 'upstream' for your git repo, as other PR's may be merged while you're working on your branch/fork. 58 | 59 | ```terminal 60 | git remote add upstream https://github.com/newridho/Halo-Dunia24 61 | ``` 62 | 63 | You can verify that the new remote has been added by typing 64 | ```terminal 65 | git remote -v 66 | ``` 67 | 68 | To pull any new changes from your parent repo simply run 69 | ```terminal 70 | git merge upstream/main 71 | ``` 72 | 73 | This will give you any eventual conflicts and allow you to easily solve them in your repo. It's a good idea to use it frequently in between your own commits to make sure that your repo is up to date with its parent. --------------------------------------------------------------------------------