Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "A modern multi-paradigm, versatile, and functional Programming La
authors = ["Kazooki123 <mgamerdinge146@gmail.com>"]
keywords = ["paradigm", "programming-language", "modern", "interpreter"]
categories = ["command-line-utilities", "development-tools"]
version = "1.2.1"
version = "0.1.1"
repository = "https://github.com/crabby-lang/crabby"
edition = "2024"
license = "GPL-3.0-only"
Expand Down
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -631,8 +631,8 @@ to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 2024 Kazooki123
Crabby The Programming Language.
Copyright (C) 2026 Kazooki123

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

## Introduction

![Logo](https://github.com/crabby-lang/crabby/blob/main/crabbylogo.png)
![Logo](https://github.com/crabby-lang/crabby/blob/dev/crabbylogo.png)

> [!WARNING]
> **Crabby** is *still under development* with new features and bugs being fixed, if you encounter an error then that's **OUR** fault, and **we're still fixing it**. Crabby is **very new** due to the `rewrite update` and is still experiencing bugs and errors. **If you want to help out, please do!**
Expand Down
Binary file modified crabbylogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion examples/high/generics.crab
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Crabby's Generic implementation - EXPERIMENTAL

pub def add<T:Num>(a: T, b: T) -> T {
type T = Num

pub def add<T>(a: T, b: T) -> T {
return a + b
}

Expand Down
2 changes: 1 addition & 1 deletion pkgs/freebsd/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# YIPPIEE

PORTNAME=crabby
DISTVERSION=1.2.1
DISTVERSION=0.1.1
CATEGORIES=lang
MASTER_SITES=GH
GH_ACCOUNT=crabby-lang
Expand Down
2 changes: 1 addition & 1 deletion pkgs/nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

stdenv.mkDerivation rec {
pname = "crabby";
version = "1.2.1";
version = "0.1.1";

src = fetchurl {
url = "https://github.com/crabby-lang/crabby/archive/refs/tags/v${version}.tar.gz";
Expand Down
2 changes: 1 addition & 1 deletion pkgs/void/template
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Template script for Crabby in Void Linux

pkgname=crabby
version=1.2.1
version=0.1.1
revision=1
build_style=cargo
short_desc="Crabby Programming Language"
Expand Down