├── .all-contributorsrc ├── Nothing.adb ├── Nothing.asm ├── Nothing.bas ├── Nothing.bat ├── Nothing.bf ├── Nothing.c ├── Nothing.cljx ├── Nothing.cobc ├── Nothing.coffee ├── Nothing.cpp ├── Nothing.cs ├── Nothing.css ├── Nothing.d ├── Nothing.dart ├── Nothing.dpl ├── Nothing.exs ├── Nothing.f95 ├── Nothing.go ├── Nothing.haml ├── Nothing.hs ├── Nothing.html ├── Nothing.hx ├── Nothing.java ├── Nothing.js ├── Nothing.json ├── Nothing.kt ├── Nothing.lol ├── Nothing.lua ├── Nothing.m ├── Nothing.pas ├── Nothing.php ├── Nothing.pl ├── Nothing.py ├── Nothing.r ├── Nothing.rb ├── Nothing.rs ├── Nothing.sc ├── Nothing.scala ├── Nothing.sh ├── Nothing.swift ├── Nothing.ts ├── Nothing.vb └── README.md /.all-contributorsrc: -------------------------------------------------------------------------------- 1 | { 2 | "files": [ 3 | "README.md" 4 | ], 5 | "imageSize": 100, 6 | "commit": false, 7 | "contributors": [ 8 | { 9 | "login": "anuraghazra", 10 | "name": "Anurag Hazra", 11 | "avatar_url": "https://avatars3.githubusercontent.com/u/35374649?v=4", 12 | "profile": "http://anuraghazra.github.io", 13 | "contributions": [ 14 | "code", 15 | "doc", 16 | "ideas", 17 | "maintenance", 18 | "tool" 19 | ] 20 | }, 21 | { 22 | "login": "rajaraghav", 23 | "name": "Raja Raghav", 24 | "avatar_url": "https://avatars1.githubusercontent.com/u/23502135?v=4", 25 | "profile": "https://www.rajaraghav.com", 26 | "contributions": [ 27 | "code" 28 | ] 29 | }, 30 | { 31 | "login": "LeLobster", 32 | "name": "LeLobster", 33 | "avatar_url": "https://avatars1.githubusercontent.com/u/11016915?v=4", 34 | "profile": "https://github.com/LeLobster", 35 | "contributions": [ 36 | "code" 37 | ] 38 | }, 39 | { 40 | "login": "x899", 41 | "name": "Priyank Chheda", 42 | "avatar_url": "https://avatars2.githubusercontent.com/u/26242252?v=4", 43 | "profile": "https://twitter.com/_priyankchheda", 44 | "contributions": [ 45 | "code" 46 | ] 47 | }, 48 | { 49 | "login": "TheBinitGhimire", 50 | "name": "Binit Ghimire", 51 | "avatar_url": "https://avatars1.githubusercontent.com/u/20013689?v=4", 52 | "profile": "https://www.facebook.com/InternetHeroBINIT", 53 | "contributions": [ 54 | "code" 55 | ] 56 | } 57 | ], 58 | "contributorsPerLine": 7, 59 | "projectName": "Nothing", 60 | "projectOwner": "anuraghazra", 61 | "repoType": "github", 62 | "repoHost": "https://github.com" 63 | } 64 | -------------------------------------------------------------------------------- /Nothing.adb: -------------------------------------------------------------------------------- 1 | with Ada.Text_IO; use Ada.Text_IO; 2 | 3 | procedure Nothing is 4 | begin 5 | Put_Line ("Nothing"); 6 | end Nothing; 7 | -------------------------------------------------------------------------------- /Nothing.asm: -------------------------------------------------------------------------------- 1 | section .text 2 | global _start 3 | _start: 4 | mov edx, len 5 | mov ecx, msg 6 | mov ebx, 1 7 | mov eax, 4 8 | int 0x80 9 | mov eax, 1 10 | int 0x80 11 | 12 | section .data 13 | 14 | msg db 'Nothing',0xa 15 | len equ $ - msg 16 | -------------------------------------------------------------------------------- /Nothing.bas: -------------------------------------------------------------------------------- 1 | Print "Nothing" 2 | -------------------------------------------------------------------------------- /Nothing.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | echo "Nothing" 3 | pause 4 | -------------------------------------------------------------------------------- /Nothing.bf: -------------------------------------------------------------------------------- 1 | -[--->+<]>-------.-[--->+<]>.+++++.------------.+.+++++.-------. 2 | -------------------------------------------------------------------------------- /Nothing.c: -------------------------------------------------------------------------------- 1 | #include 2 | int main() 3 | { 4 | printf("Nothing"); 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /Nothing.cljx: -------------------------------------------------------------------------------- 1 | (println "Nothing") 2 | -------------------------------------------------------------------------------- /Nothing.cobc: -------------------------------------------------------------------------------- 1 | IDENTIFICATION DIVISION. 2 | PROGRAM-ID. HELLO-WORLD. 3 | PROCEDURE DIVISION. 4 | DISPLAY 'Nothing'. 5 | STOP RUN. 6 | -------------------------------------------------------------------------------- /Nothing.coffee: -------------------------------------------------------------------------------- 1 | console.log 'Nothing' 2 | -------------------------------------------------------------------------------- /Nothing.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | std::cout<<"nothing"; 6 | } 7 | -------------------------------------------------------------------------------- /Nothing.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace NothingNothing 3 | { 4 | class Nothing 5 | { 6 | static void Main() 7 | { 8 | Console.WriteLine("Nothing"); 9 | Console.ReadKey(); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Nothing.css: -------------------------------------------------------------------------------- 1 | body{ 2 | &:before{ 3 | content:"Nothing" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /Nothing.d: -------------------------------------------------------------------------------- 1 | import std.stdio; 2 | 3 | void main(string[ ] args) 4 | { 5 | writeln("Nothing"); 6 | } 7 | -------------------------------------------------------------------------------- /Nothing.dart: -------------------------------------------------------------------------------- 1 | void main(){ 2 | print("Nothing"); 3 | } 4 | -------------------------------------------------------------------------------- /Nothing.dpl: -------------------------------------------------------------------------------- 1 | program Nothing; 2 | begin 3 | Writeln('Nothing'); 4 | end. 5 | -------------------------------------------------------------------------------- /Nothing.exs: -------------------------------------------------------------------------------- 1 | IO.puts "Nothing" 2 | -------------------------------------------------------------------------------- /Nothing.f95: -------------------------------------------------------------------------------- 1 | program Nothing 2 | Print *, "Nothing" 3 | end program Nothing 4 | -------------------------------------------------------------------------------- /Nothing.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "fmt" 4 | 5 | func main(){ 6 | fmt.Println("Nothing") 7 | } 8 | -------------------------------------------------------------------------------- /Nothing.haml: -------------------------------------------------------------------------------- 1 | %title Nothing 2 | %body 3 | %p Nothing 4 | -------------------------------------------------------------------------------- /Nothing.hs: -------------------------------------------------------------------------------- 1 | main = putStrLn "Nothing" 2 | -------------------------------------------------------------------------------- /Nothing.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Nothing 6 | 7 | 8 |

Nothing

9 | 10 | 11 | -------------------------------------------------------------------------------- /Nothing.hx: -------------------------------------------------------------------------------- 1 | class NoThing { 2 | static public function main():Void { 3 | trace("Nothing"); 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /Nothing.java: -------------------------------------------------------------------------------- 1 | public class Nothing { 2 | public static void main(String[] args) { 3 | System.out.println("Nothing"); 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /Nothing.js: -------------------------------------------------------------------------------- 1 | const Nothing = "Nothing"; 2 | console.log(Nothing); 3 | -------------------------------------------------------------------------------- /Nothing.json: -------------------------------------------------------------------------------- 1 | { 2 | "Nothing": "Nothing" 3 | } 4 | -------------------------------------------------------------------------------- /Nothing.kt: -------------------------------------------------------------------------------- 1 | fun main(args: Array) { 2 | println("Nothing") 3 | } 4 | -------------------------------------------------------------------------------- /Nothing.lol: -------------------------------------------------------------------------------- 1 | HAI 1.2 2 | CAN HAS STDIO? 3 | VISIBLE "Nothing" 4 | KTHXBYE 5 | 6 | -------------------------------------------------------------------------------- /Nothing.lua: -------------------------------------------------------------------------------- 1 | print("Nothing") 2 | -------------------------------------------------------------------------------- /Nothing.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | int main (int argc, const char * argv[]) 4 | { 5 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 6 | NSLog (@"Nothing"); 7 | [pool drain]; 8 | return 0; 9 | } 10 | -------------------------------------------------------------------------------- /Nothing.pas: -------------------------------------------------------------------------------- 1 | Program Nothing(output); 2 | begin 3 | writeln('Nothing'); 4 | end. 5 | -------------------------------------------------------------------------------- /Nothing.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Nothing.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | 3 | print "Nothing\n"; 4 | -------------------------------------------------------------------------------- /Nothing.py: -------------------------------------------------------------------------------- 1 | print("Nothing") 2 | -------------------------------------------------------------------------------- /Nothing.r: -------------------------------------------------------------------------------- 1 | Nothing <- "Nothing" 2 | print (Nothing) 3 | -------------------------------------------------------------------------------- /Nothing.rb: -------------------------------------------------------------------------------- 1 | puts "Nothing" 2 | -------------------------------------------------------------------------------- /Nothing.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Nothing"); 3 | } 4 | -------------------------------------------------------------------------------- /Nothing.sc: -------------------------------------------------------------------------------- 1 | (display "Nothing") 2 | (newline) 3 | -------------------------------------------------------------------------------- /Nothing.scala: -------------------------------------------------------------------------------- 1 | object NoThing { 2 | def main(args: Array[String]) { 3 | println("Nothing") 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /Nothing.sh: -------------------------------------------------------------------------------- 1 | echo "Nothing" 2 | -------------------------------------------------------------------------------- /Nothing.swift: -------------------------------------------------------------------------------- 1 | println("Nothing") 2 | -------------------------------------------------------------------------------- /Nothing.ts: -------------------------------------------------------------------------------- 1 | const Nothing:string = "Nothing"; 2 | console.log(Nothing); 3 | -------------------------------------------------------------------------------- /Nothing.vb: -------------------------------------------------------------------------------- 1 | Module VBModule 2 | Sub Main() 3 | Console.WriteLine("Nothing") 4 | End Sub 5 | End Module 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Nothing 2 | [![All Contributors](https://img.shields.io/badge/all_contributors-5-orange.svg?style=flat-square)](#contributors) 3 | 4 | ![Custom badge](https://img.shields.io/badge/dynamic/json.svg?color=deepskyblue&label=languages&query=number&url=https%3A%2F%2Fgh-langs-number.now.sh%2Fanuraghazra%2FNothing) 5 | 6 | 7 | Nothing 8 | 9 | ``` 10 | 11 | ███╗ ██╗ ██████╗ ████████╗██╗ ██╗██╗███╗ ██╗ ██████╗ 12 | ████╗ ██║██╔═══██╗╚══██╔══╝██║ ██║██║████╗ ██║██╔════╝ 13 | ██╔██╗ ██║██║ ██║ ██║ ███████║██║██╔██╗ ██║██║ ███╗ 14 | ██║╚██╗██║██║ ██║ ██║ ██╔══██║██║██║╚██╗██║██║ ██║ 15 | ██║ ╚████║╚██████╔╝ ██║ ██║ ██║██║██║ ╚████║╚██████╔╝ 16 | ╚═╝ ╚═══╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝╚═╝╚═╝ ╚═══╝ ╚═════╝ 17 | 18 | ``` 19 | ``` 20 | 21 | _ _ _ _ _ 22 | | \ | | ___ | |_ | |__ (_) _ __ __ _ 23 | | \| | / _ \ | __| | '_ \ | | | '_ \ / _` | 24 | | |\ | | (_) | | |_ | | | | | | | | | | | (_| | 25 | |_| \_| \___/ \__| |_| |_| |_| |_| |_| \__, | 26 | |___/ 27 | ``` 28 | 29 | 30 | ``` 31 | 32 | __ __ ______ ______ __ __ __ __ __ ______ 33 | /\ "-.\ \ /\ __ \ /\__ _\ /\ \_\ \ /\ \ /\ "-.\ \ /\ ___\ 34 | \ \ \-. \ \ \ \/\ \ \/_/\ \/ \ \ __ \ \ \ \ \ \ \-. \ \ \ \__ \ 35 | \ \_\\"\_\ \ \_____\ \ \_\ \ \_\ \_\ \ \_\ \ \_\\"\_\ \ \_____\ 36 | \/_/ \/_/ \/_____/ \/_/ \/_/\/_/ \/_/ \/_/ \/_/ \/_____/ 37 | 38 | ``` 39 | 40 | ``` 41 | 42 | ,---. .--. ,-----. ,---------. .---. .---. .-./`) ,---. .--. .-_'''-. 43 | | \ | | .' .-, '. \ \ | | |_ _| \ .-.') | \ | | '_( )_ \ 44 | | , \ | | / ,-.| \ _ \ `--. ,---' | | ( ' ) / `-' \ | , \ | | |(_ o _)| ' 45 | | |\_ \| | ; \ '_ / | : | \ | '-(_{;}_) `-'`"` | |\_ \| | . (_,_)/___| 46 | | _( )_\ | | _`,/ \ _/ | :_ _: | (_,_) .---. | _( )_\ | | | .-----. 47 | | (_ o _) | : ( '\_/ \ ; (_I_) | _ _--. | | | | (_ o _) | ' \ '- .' 48 | | (_,_)\ | \ `"/ \ ) / (_(=)_) |( ' ) | | | | | (_,_)\ | \ `-'` | 49 | | | | | '. \_/``".' (_I_) (_{;}_)| | | | | | | | \ / 50 | '--' '--' '-----' '---' '(_,_) '---' '---' '--' '--' `'-...-' 51 | 52 | ``` 53 | 54 | ## Contributors ✨ 55 | 56 | Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 |
Anurag Hazra
Anurag Hazra

💻 📖 🤔 🚧 🔧
Raja Raghav
Raja Raghav

💻
LeLobster
LeLobster

💻
Priyank Chheda
Priyank Chheda

💻
Binit Ghimire
Binit Ghimire

💻
69 | 70 | 71 | 72 | This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! 73 | --------------------------------------------------------------------------------