k0b0's record.

Computer Engineering, Arts and Books

2018-03-07から1日間の記事一覧

Ruby developer Matz's new language Streem

Recently, I learned that Ruby developer Matz is developing a programming language called Streem. Streem is a language specialized for stream processing. I think people like sed and awk will like this language. I like stream processing, so …

Introduction to Python. FIzzBizz

FizzBizz Describe FizzBizz in Python. Description example of FizzBizz(1 to 15 FizzBizz) # fizzbizz.py def fizzbizz(n): for i in range(1,n+1): if ((i % 3 == 0) and (i % 5 == 0)): print('FizzBizz') elif (i % 3 == 0): print('Fizz') elif (i …