Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pyzh/clo
apl elixir erlang forth haxe j k mathematica perl python q rust typescript
Last synced: about 6 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/pyzh/clo
- Owner: pyzh
- Created: 2018-10-17T18:23:39.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-22T02:25:12.000Z (over 6 years ago)
- Last Synced: 2024-11-21T07:29:22.935Z (2 months ago)
- Topics: apl, elixir, erlang, forth, haxe, j, k, mathematica, perl, python, q, rust, typescript
- Language: Python
- Homepage: https://github.com/pyzh/flo.c
- Size: 14.6 KB
- Stars: 0
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# clo
```python
import clo
import clo.c # as C
#from clo import O,F,S,N,H# 中文
c-'打印123' #= print('123')from clo import e,o #o=原文,e=英文
o.打印(123) #->o.印('123')
from clo import * # do something like / import future
print(123) #-> o.打印(123)
print['123'] #> same. not only one way to print number/ like perl?
print[0] # error. stack empty
print<<'21' # nothing
print[1] # -> 21
print-'2' # nothing?
print[2] # '1'print() # -> py:print('1')
print[3] # =print[2], not really exist. like print[-1]print+'a' # '1'->'1a'
print[4] # actually is print[3]print>>'b' # '1a' -> 'b'
print[5]print # repl>>> {打印:b}
str(print) # 'b'
```