Skip to content

Instantly share code, notes, and snippets.

View NichtJens's full-sized avatar
🎩
/\/\/\/\/\/\/\/\/\

Auf keinen Fall Jens NichtJens

🎩
/\/\/\/\/\/\/\/\/\
View GitHub Profile
@NichtJens
NichtJens / Makefile.cargo
Last active March 24, 2019 15:39 — forked from mzabaluev/Makefile.cargo
Drop-in makefile for Cargo projects
CARGO = cargo
all: build doc
build:
@$(CARGO) build
doc:
@$(CARGO) doc
@NichtJens
NichtJens / PhpJava.java
Created September 1, 2016 04:23 — forked from avafloww/PhpJava.java
This snippet of code is syntactically valid in both PHP and Java, and produces the same output in both.
/*<?php
//*/public class PhpJava { public static void main(String[] args) { System.out.printf("/*%s",
//\u000A\u002F\u002A
class PhpJava {
function main() {
echo(//\u000A\u002A\u002F
"Hello World!");
}}
//\u000A\u002F\u002A
PhpJava::main();