This file contains 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
.assembly extern mscorlib {} | |
.assembly Hello {} | |
.method static void Main() cil managed { | |
.entrypoint | |
.maxstack 1 | |
ldstr "Hello, world!" | |
call void [mscorlib]System.Console::WriteLine(string) | |
ret | |
} |
This file contains 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
class Barrette(object): | |
def __truediv__(self, other): | |
return other | |
def __lt__(self, other): | |
print(other) | |
def __str__(self): | |
return 'ひだまりスケッチ×365 来週も見てくださいね!' |
This file contains 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
ReferenceError.prototype.name = 'ひだまりスケッチ×365 来週も見てくださいね!'; | |
X / _ / X < 来週も見てくださいね |
This file contains 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
(defn X [& _] | |
(println "ひだまりスケッチ×365 来週も見てくださいね!")) | |
(def _ nil) | |
(def 来週も見てくださいね! nil) | |
(X / _ / X < 来週も見てくださいね!) |
This file contains 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
*init | |
screen 0, 256, 256 | |
title "お絵かけない" | |
angle = 0 | |
pressed = 0 | |
px = 0 | |
py = 0 |
This file contains 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
*init | |
screen 0, 256, 256 | |
title "もんかる" | |
num = 0 | |
n = 0 | |
pos 72, 120 | |
mes "クリックで開始" |
This file contains 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
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>ゆの in HTML/CSS</title> | |
<style> | |
#yuno { | |
font-size: 0; | |
} | |
#yuno::after { |
This file contains 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
} if (1) { console.log('hoge'); // => 'hoge' |
This file contains 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
Number.prototype.times = function (fn) { | |
Array.apply(null, { length: this }).forEach(fn); | |
}; | |
5..times(function (_, n) { | |
console.log(n); | |
}); |
This file contains 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
'abs acos asin atan atan2 ceil cos exp floor log pow round sin sqrt tan'.split(' ').forEach(function (name) { | |
var slice = [].slice; | |
Number.prototype[name] = function () { | |
return Math[name].apply(null, [this].concat(slice.call(arguments))); | |
}; | |
}); |