Personal info:
Lucian Branescu Mihaila
email: lucian dot braneNOSPAMscu at gmail dot com irc: lucian
Project: Python3 on Parrot
Abstract: This project aims to create a Python3 [Python] compiler and object system that works on parrot.
Personal info:
Lucian Branescu Mihaila
email: lucian dot braneNOSPAMscu at gmail dot com irc: lucian
Project: Python3 on Parrot
Abstract: This project aims to create a Python3 [Python] compiler and object system that works on parrot.
from __future__ import print_function | |
from operator import add, mul | |
from functools import partial | |
class Monad(object): | |
def __init__(self, value): | |
self._value = value |
I hereby claim:
To claim this, I am signing this object:
open System | |
let rec prompt convert msg = | |
printf msg | |
try | |
Console.ReadLine() |> convert | |
with _ -> prompt convert msg | |
let processPersonInfo() = |