Code Monkey home page Code Monkey logo

newlisp's Introduction

newLISP mirror

Build Status Build status codecov DebianBadge Gitter

newLISP with Git(Hub)

NOTE: This repository is unofficial mirror.

This is newLISP experimental repository introduced DVCS (Distributed Version Control System) by using Git. All source files are fetch from SourceForge. Mainly available to easy browsing source code, view history, create a patch, etc.

The final goal is newLISP development introduces DVCS (Git, Mercurial, etc) in official.

branch

  • master : mirror from original newlisp sources
  • develop : master files and README.md, .travis.yml, appveyor.yml (default branch)
  • feature/xxx : (reserved)

features

Contribute

Issue and pull requests about this repository are welcome.

For code contributions, bug fixes, reports and comments, please contact Lutz Mueller (see README) or post to the Forum.

Link

License

newLISP and Nuevatec are trademarks of Lutz Mueller. All files are distribute by GPLv3. For more details, see doc/COPYING and doc/License.html.

newlisp's People

Contributors

gitter-badger avatar kinghajj avatar kosh04 avatar newlisp avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

newlisp's Issues

newlisp.c:5839]: (style) Suspicious condition

newlisp.c:5839]: (style) Suspicious condition (assignment + comparison); Clarify expression with parentheses.

Source code is

if((intFlag = ((CELL *)cell->next)->next == nilCell))

Maybe better code

if((intFlag = ((CELL *)cell->next)->next) == nilCell)

Correct original author

@kosh04 is the owner of this repository, but not the project author.

Git has author/committer info. so it may be better to replace old author history.

Keyword

  • git-filter-branch
  • GIT_AUTHOR_NAME
  • GIT_AUTHOR_EMAIL
  • GIT_AUTHOR_DATE
  • Who's managing @newlisp ?

a bug in '(get-url post-url ...)

in nl-web.c
//532
if(statusCode == 204)
{
return(webError(ERROR_NO_CONTENT));
resultPtr = NULL;
}
there return without close socket.
so it will use up all tcp port

libreadline update to 8.0.0

newlisp: error while loading shared libraries: libreadline.so.7: cannot open shared object file: No such file or directory.
i just rebuild it then everything is fine. so closed this issue.

Documentation error: "index" function example

In the documentation of the "index" function, the last example line says:
(select '(1 10 3 6 4 5 11) '(1 3 6)) โ†’ (1 3 6)
This is wrong. The returned value is not (1 3 6) but (10 6 11).

error in fibonacci code example on the wiki

Greetings,
Please acknowledge that the code example for the fibonacci generator on your wiki page:
Introduction to newLISP/The basics
is not correct. (The fibonacci of 2 is 1, not 2)
This error can be easily corrected if you replace (if (< n 2)) for (if (< n 3)) in your example.

P.S.: I wouldn't mind to make the correction by editing the wiki, but I cannot because I use a public access to the internet with a VPN.

Missing makefile_ios

this one worked for me:

# makefile for newLISP v. 10.x.x on OS without readline

OBJS = newlisp.o nl-symbol.o nl-math.o nl-list.o nl-liststr.o nl-string.o nl-filesys.o \
	nl-sock.o nl-import.o nl-xml-json.o nl-web.o nl-matrix.o nl-debug.o pcre.o nl-utf8.o

CFLAGS = -m32 -Wall -O1 -c -DMAC_OSX

CC = cc

default: $(OBJS)
	$(CC) $(OBJS) -m32 -lm -o newlisp

.c.o:
	$(CC) $(CFLAGS) $<

$(OBJS): primes.h protos.h makefile_darwin

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.