Skip to content
This repository was archived by the owner on Jan 28, 2022. It is now read-only.
This repository was archived by the owner on Jan 28, 2022. It is now read-only.

Double Handling #8

@jkwoods

Description

@jkwoods

Doubles/floating points generally not supported.

Example c tests:

int bar() {
  double foo = 4.0;
  if (1 == 1){
    foo = 1.0;
  }
}
int bar() {
  double foo = 5.0;
  if (1.0 < foo){
    return 1;
  }
}
int bar() {
  double foo = 1.0;
  double goo = 2.0;
  return foo + goo
}

Metadata

Metadata

Assignees

Labels

enhancementNew feature or request

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions