代码搜索:LISP编程
找到约 10,000 项符合「LISP编程」的源代码
代码结果 10,000
www.eeworm.com/read/428887/8831258
l hanoi.l
# 10nov04abu
# (c) Software Lab. Alexander Burger
# Lisp
(de hanoi (N)
(move N 'left 'center 'right) )
(de move (N A B C)
(unless (=0 N)
(move (dec N) A C B)
(println 'Move 'disk '
www.eeworm.com/read/231499/14230632
txt 用pda联结全站仪自动测量的方法(evb).txt
VB或LISP源码彩色显示 注:在[code]...[/code]内就以下面格式显示文字,双击源码拷贝到剪切板
Option Explicit
Dim p As Single
Text4.Text = "6.63"
www.eeworm.com/read/231546/4715247
vim jess.vim
" Vim syntax file
" Language: Jess
" Maintainer: Paul Baleme
" Last change: September 14, 2000
" Based on lisp.vim by : Dr. Charles E. Campbell, Jr.
" F
www.eeworm.com/read/305303/3774428
am makefile.am
## Process this with automake to create Makefile.in
include $(top_srcdir)/Make-rules
java_sources = \
Lisp2.java \
defvar.java \
defun.java \
function.java \
prog1.java \
setq.java \
S
www.eeworm.com/read/389864/2535120
rsg universaljoint.rsg
; -*- mode: lisp; -*-
(RSG 0 1)
(
(templ $PerName $EffName
$Path_Body1 $Path_Body2
$Anchor_X $Anchor_Y $Anchor_Z
$Axis1_X $Axis1_Y $Axis1_
www.eeworm.com/read/160611/5568600
h seqread.h
/* seqread.h -- header file for users of seqread.c */
/* Copyright 1989 Carnegie Mellon University */
#define name_length 255
void seq_read(seq_type seq, FILE *fp); /* LISP: (SEQ-READ SEQ FILE) */
ti
www.eeworm.com/read/160611/5568837
h chase.h
sound_type snd_make_chase(sound_type input, double risetime, double falltime);
sound_type snd_chase(sound_type input, double risetime, double falltime);
/* LISP: (snd-chase SOUND ANYNUM ANYNUM) */