This file contains hidden or 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 User{ | |
String name; | |
int age; | |
float height; | |
void set_user(); | |
User get_user(); | |
} | |
void User::set-user(){ |
This file contains hidden or 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
usr = {'name': "Someone", 'age': 33, 'height': 6.1 } |
This file contains hidden or 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
usr = { someone, 33, 6.1 }. |
This file contains hidden or 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
usr = ('someone', 33, 6.1) |
This file contains hidden or 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
Usr = { 'User', | |
{name, someone}, | |
{age, 33}, | |
{height, 6.1} | |
}. |
This file contains hidden or 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
usr = ('User', | |
('name', 'someone'), | |
('age', 33), | |
('height', 6.1) | |
) |
This file contains hidden or 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
{'User, N, A, H} = Usr. | |
{'Any", N, A, H} = Usr. |
This file contains hidden or 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
{_, _, {_, Age}, _} = Usr. |
This file contains hidden or 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
# HG changeset patch | |
# User Arun K Rajeevan <[email protected]> | |
# Date 1302552098 -19800 | |
# Node ID fa92d22264a58dd6b232c28b1dd4c78f8ee62c4f | |
# Parent d3dc0e7da9aac20f5bab6f2d61afcb78b2444a47 | |
added bpython support | |
diff -r d3dc0e7da9aa -r fa92d22264a5 gluon/shell.py | |
--- a/gluon/shell.py Mon Apr 11 09:13:22 2011 -0500 | |
+++ b/gluon/shell.py Tue Apr 12 01:31:38 2011 +0530 |
This file contains hidden or 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
__author__ = "Arun K Rajeevan (kra3)" | |
__copyright__ = "Copyright 2011-2012" | |
__license__ = "BSD" | |
__version__ = "2" | |
__email__ = "[email protected]" | |
__status__ = "Production" | |
import time | |
import ctypes |