[ create a new paste ] login | about

kzh

Name: Kaleb Hornsby
Email:
Site/Blog: http://kaleb.hornsby.ws/
Location: US
Default language: C++
Favorite languages: Python,C#,Go,C
About:

Saved pastes by kzh:

C++, pasted on Sep 27:
1
2
3
4
5
#include <iostream>

int main() {
	double change = 45.76;
	double unit;
...
view (40 lines, 7 lines of output)
C++, pasted on Sep 27:
1
2
3
4
5
#include <iostream>

int main() {
	double change = 71.87;
	double unit;
...
view (42 lines, 7 lines of output)
Python, pasted on Jun 17:
1
2
3
4
5
from random import sample

print sample(['a','b'],2)

print sample({9:'c',8:'d'},2)
view (5 lines, 2 lines of output)