Files @ b4a9c41d70da
Branch filter:

Location: CSY/reowolf/.gitignore

MH
Initial casting implementation

Explicit casts can be performed with the syntax 'cast<type>(input)'
and implicit casts can be performed with the syntax 'cast(input)'
where the output type is determined by inference.

To prevent casting shenanigans we only allow casting of primitive
types and of types to themselves (essentially creating a copy).
# TODO Documents and notes
todo_*.md
notes_*.md

# Build system
Cargo.lock
target
**/*.rs.bk

# IDEs
/.idea

# Binaries
main

# Examples
examples/*/*.exe
examples/*.dll
examples/reowolf*
examples/*.txt
examples/lib*
examples/lib*.*
examples/*/amy
examples/*/bob
examples/*/main

# Logs
logs/*
logs/*/*