- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
/* Example libCello Program */
#include "Cello.h"
int main(int argc, char** argv) {
/* Stack objects are created using "$" */
var int_item = $(Int, 5);
var float_item = $(Real, 2.4);
var string_item = $(String, "Hello");
/* Heap objects are created using "new" */
var items = new(List, int_item, float_item, string_item);
/* Collections can be looped over */
foreach (item in items) {
/* Types are also objects */
var type = type_of(item);
print("Object %$ has type %$\n", item, type);
}
/* Heap objects destroyed with "delete" */
delete(items);
}
guest 22.05.2015 14:22 # 0
Stallman 22.05.2015 14:31 # 0
bormand 22.05.2015 14:56 # 0
3.14159265 23.05.2015 00:28 # 0
Кишки у неё между прочим красивше чем я думал.
1024-- 23.05.2015 13:04 # −1
Я надеялся, что там какое-то обсуждение было, а там просто упомянули. Видимо, придётся таки откраывать их мануалы и зачитываться до зелёных макросов.